Questions tagged [reply]

257 questions
14
votes
1 answer

Get all fields from an interface

How do I know the fields I can access from the reply object/interface? I tried reflection but it seems you have to know the field name first. What if I need to know all the fields available to me? // Do sends a command to the server and returns the…
RAFJR
  • 362
  • 1
  • 7
  • 22
14
votes
2 answers

Is the reply-to header universally supported among email clients

If I add a reply-to header to the emails I'm sending, which is different from their from address, will it always work for my users no matter what client they are using. I've been having situations where replies are going to the from address instead…
albrechtnate
  • 291
  • 3
  • 13
11
votes
1 answer

Reply to email using python 3.4

I am trying to reply to an email using Python 3.4. The recipient of the email will be using Outlook (unfortunately) and it is important that Outlook recognizes the reply and displays the thread properly. The code I currently have is: def…
urban
  • 5,392
  • 3
  • 19
  • 45
10
votes
2 answers

WCF OperationContract - What's the point of Action and ReplyAction?

[ServiceContract(Namespace = "http://schemas.mycompany.com/", Name = "MyService")] public interface IMyService { [OperationContract(Name = "MyOperation") OperationResponse MyOperation(OperationRequest request); } In this scenario, what is…
michael
  • 14,844
  • 28
  • 89
  • 177
9
votes
3 answers

Receive replies from Gmail with smtplib - Python

Ok, I am working on a type of system so that I can start operations on my computer with sms messages. I can get it to send the initial message: import smtplib fromAdd = 'GmailFrom' toAdd = 'SMSTo' msg = 'Options \nH - Help \nT - Terminal' …
Roger Parish III
  • 133
  • 1
  • 1
  • 3
8
votes
0 answers

Twitter API - Retrieve all replies to a certain tweet

I am trying to use Twitter API with the Python wrapper Twython and I want to retrieve all replies (the comments below a tweet) to a certain tweet find using some patterns. At the moment to achieve this, I perform the search of a string, I retrieve…
Mark
  • 399
  • 4
  • 12
7
votes
1 answer

Reply to sender - PHP email

Here is my code for a email form. It works well, it sends to my email. But how can i make it so i can reply to the email that i received from the form? Would you be able to edit my code and put it in because im a BIG php noobie. many…
Adam G
  • 357
  • 2
  • 6
  • 20
7
votes
1 answer

Print out response of Dbus Method Call in C

The problem I am having is specifically printing out the response of a dbus method call in C using the low level API. I am new to C's libdbus, but have done some work in python-dbus. I know how to write dbus methods and method calls in python as…
NuclearPeon
  • 5,743
  • 4
  • 44
  • 52
6
votes
1 answer

php remove all but last quoted reply in forum

I'm creating my own forum and stuck with removing multiple quoted text from replies. I'll try to explain this with example. Let's say we got first message with text Hello A. Then somebody quotes this and we get: [q]Hello A[/q] Hello you too in…
user1050593
5
votes
1 answer

Does RFC 5322 allow reply-to header without any actual e-mail address? If so, what is its semantic?

Section 3.6.2 of RFC 5322 defines the reply-to header as: reply-to = "Reply-To:" address-list CRLF Where address-list is defined at section 3.4. When unfolding the ABNF grammar, I find that address-list can consist of nothing but phrase…
dermiste
  • 121
  • 1
  • 5
5
votes
3 answers

Sendgrid Web API -- set multiple users in reply_to field

I'm using the Sendgrid Python library, and I'd like to send emails with multiple people in the 'reply_to' field. I'd like to send an email to 2 people such that both users can email one another by hitting reply. The simplest solution to this…
Clay Wardell
  • 14,846
  • 13
  • 44
  • 65
5
votes
3 answers

Can redis disable the replies for pipelined commands?

I'm currently developing a cache that needs increase a few hundred counters for every call like this: redis.pipelined do keys.each{ |key| redis.incr key } end In my profiling now I saw that the replies I don't need are still collected by the…
Thomas Fankhauser
  • 5,039
  • 1
  • 33
  • 32
5
votes
0 answers

Akka zeromq actor seems to be slow for REP/REQ

I'm building a REQ/REP service with zeromq and the REP part is in Scala and using Akka actors. Here is the actor class ReplyActor extends Actor { println("Listening..") def receive = { case m: ZMQMessage => sender !…
user918712
  • 113
  • 1
  • 8
4
votes
1 answer

Discord bot is not replying to messages

I have been trying to set up a discord bot and by following the docs, I have been able to set up a slash command but have not been able to get the bot to reply to messages on the server. Here is the code I used to set up slash command from…
4
votes
1 answer

Reply to specific whatsapp message on whatsapp api

I am tryin to send a reply to a specific whatsapp message, which is done by sliding the message to the right. But on my received POST (send through Twilio), I don't find anything that can denote the referenced message. How can I do this please? Here…
Javelin
  • 61
  • 4
1
2 3
17 18