Questions tagged [reply]

257 questions
1
vote
0 answers

Thunderbird reply using command line

I am searching for a way to reply to an e-mail using Thunderbird via command line. I know where the eml is (let's say c:\1\test.eml) and I want to open it using the command line in reply mode (possibly reply all) and insert text based on the users…
Juice
  • 11
  • 2
1
vote
1 answer

Discord bot : How to know when a user is pinged in the message and not because it's a reply

The goal : I am trying to get the bot to send a message when a specific user is pinged in a message. So I tried with this : if (message.mentions.has(bot.users.cache.get(userID))) And it's working fine, if you ping the user, the bot sends a message.…
Ninluc
  • 23
  • 1
  • 6
1
vote
1 answer

TCP SOCKET - Stratum Server Reply - OpenEthereumPool

When I connect stratum server over /dev/tcp/host/port, I send json and got the right reply. [water@Swan /tmp]$ exec 5<>/dev/tcp/127.0.0.1/8008; [water@Swan /tmp]$ echo '{"jsonrpc":"2.0","id":1,"method":"eth_submitLogin","params":["0x00000a..27e"]}'…
Water
  • 13
  • 3
1
vote
1 answer

Reply to an outlook mail using powershell

I am trying to automate some replies to email that I get on my outlook. I have tried sending mail from my outlook (normal mail) using powershell and it worked successfully. Now I am trying to reply on mail using powershell. This is my current code…
visleck
  • 331
  • 1
  • 6
1
vote
1 answer

How to reply a message with Gmail API in Ruby?

I have configured Google api's with my Ruby on Rails project. Also, I have set webhooks for incoming emails. I have successfully implemented login via Google and get user's inbox messages. Now, I'm implementing a message reply, but I'm getting…
1
vote
0 answers

How to replicate curved lines connecting iOS 14 iMessage replies using UIKit?

In iOS 14, iMessage replies were introduced. Whenever a message is sent as a reply, a curved connecting line is formed. This connecting line is curved and animates, changes shape, and even "loops" as more replies are sent. Does anyone know how…
Jack Chen
  • 488
  • 5
  • 7
1
vote
1 answer

What's are good Twitter PHP libs to send a message to new followers?

I am looking for a good PHP based lib to send a message to new followers. Probably it's already done. I think it must work as a twitter client and not around OAUTH2 authentication.
sw.
  • 3,240
  • 2
  • 33
  • 43
1
vote
2 answers

cfmail, google mail and reply to

I am having problems with google mail with a coldfusion webform, when the form gets sent the reply address is always myemail@myemail.com (substituted). Is this a google mail thing or is there a fix?
Mark Ross
  • 11
  • 2
1
vote
1 answer

Return Msg to Caller when state_timeout occur in gen_statem erlang

For example: state looks like this: state1({call,Caller},Msg,Data) -> NewData = do_somthing(), {next_State,state2,NewData,[{reply,Caller,NewMsg},{state_timeout,5000,any}]}. timeout state: state2(state_timeout,Msg,Data) -> something() (…
ersa
  • 81
  • 7
1
vote
3 answers

PHP Form - Problem with reply e-mail

The contact form is working just fine but I can't figure how to setup the "reply mail". The PHP code is as follows:
Renan
  • 153
  • 1
  • 13
1
vote
1 answer

compose Thunderbird with specified reply-to in python

I've been composing emails in python for thunderbird but I can't seem to set the reply-to field. I've tried the following with a few variations. I don't get any errors with this method, it composes just fine it just won't fill in the "reply-to"…
user4611642
  • 27
  • 1
  • 5
1
vote
5 answers

CakePHP treated comments with pagination

Is there a way to paginate comments in cakePHP with a tree behavior? Should I use tree behavior anyway or to make my own code to view the comments? Sorry, this has been asked before. I found an article: Managing Hierarchical Data in MySQL ...and I…
Sophia Gavish
  • 467
  • 2
  • 8
  • 16
1
vote
0 answers

Can the receiver input their options in html form and reply back with changes included? Is there a code for save?

I copied and pasted the html form into a gmail and it sends correctly. But when the receiver makes changes and sends it back, I do not see what they have entered. I have sent test emails, added info to the fields and the reply does not come back…
KMc
  • 55
  • 6
1
vote
1 answer

How to know server reply in iPhone?

- (IBAction) uploadImage { /* turning the image into a NSData object getting the image back out of the UIImageView setting the quality to 100 */ NSData *imageData = UIImageJPEGRepresentation(image.image,…
Jean-Luc Godard
  • 1,873
  • 3
  • 28
  • 53
1
vote
0 answers

php mail reply subject

So I managed to use "reply-to" and set an email to be replied to, however I'm wondering if its possible to change the subject of the email after its replied? instead of Re: 'Original Subject'? $header = "From: " . $from ."\r\nReply-to: " . $email .…
user8276400