Questions tagged [reply]
257 questions
4
votes
1 answer
Send Reply Via Gmail API
I am having trouble sending a reply to a previously sent message. In other words, I need to send an email (emailA), and then send another email in reply to emailA (emailB) regardless of whether the recipient responded to emailA.
I can create a…

Neil Aggarwal
- 511
- 1
- 10
- 29
4
votes
2 answers
No ARP response from gateway
I'm developing an embedded system that has to communicate with the outside world over 10Base-T ethernet. I have built all functions required to serve web pages, including ARP, IP, TCP, ICMP (ping), HTTP and portions of FTP. Now, I need to build…

Christopher Garman
- 71
- 1
- 1
- 5
3
votes
1 answer
How can I read the message that someone replied to in discord.py?
I am new to making discord bots with Discord.py
Is there any way to get the message characters of a message that someone replied to?
As in, read the message that someone replied to; not the actual message of the reply.

Kip
- 81
- 1
- 5
3
votes
2 answers
Sendgrid Python reply_to email
I have errors when I use reply_to, here is what I've tried...
This works but without reply_to :
mail = Mail(
from_email = from_email,
to_emails = to_email,
subject = subject,
html_content = content)
response =…

toioioi
- 121
- 9
3
votes
2 answers
Send Reply to email thread using Gmail API
I am trying to reply to an email I sent to myself, the subject of the email is "Testing Function"
I have a function subject() which returns subject, message_id, and thread_id below
('Testing…

TH14
- 622
- 10
- 24
3
votes
1 answer
Reply to tweets in tweepy
So I have searched all over the place and all the solutions that were presented to me all posted a new tweet and didnt actually reply to the tweets I have collected. My goal is for the script to reply to the 2 tweets I retrieve but for some reason…

Okym
- 239
- 2
- 5
- 24
3
votes
1 answer
reply_count attribute missing from tweet object
I am trying to retrieve the count of replies for a particular tweet(using tweet.retweet_count). But I am getting attribute not found error. Seems this attribute is missing from the tweet object.But when I check in the documentation of tweet object,…

chetan gupta
- 31
- 3
3
votes
3 answers
Microsoft bot framework publishing bot
I created my bot and connected it with facebook.
I have published my bot in "https://dev.botframework.com" but it is still in review stage for last 3 days. What is the use of this and how long it will take to publish.
I have made facebook messanger…

Atul Kumar
- 31
- 3
3
votes
1 answer
int-http:outbound-gateway reply-channel 'stalls'
I'm creating a Spring Integration prototype using Spring Boot.
I have a 'hub' that accepts console input and sends that to an separate socket/tcp application.
The tcp application echos what it was sent in its reply to the hub.
The hub then takes the…

maspen
- 301
- 1
- 6
- 17
3
votes
1 answer
Netty synchronous client with asynchronous callers
I am creating a server which consumes commands from numerous sources such as JMS, SNMP, HTTP etc. These are all asynchronous and are working fine. The server maintains a single connection to a single item of legacy hardware which has a request/reply…

mookins
- 71
- 1
- 5
3
votes
2 answers
Excel VBA, how to Reply to a specific email message
I receive a mail every wednesday from a specific sender. The subject of this email sometimes changes
Example #1 of subject "Exposure statement - COB 20150217"
Example #2 of subject "Margin Notice COB 2015-Feb-10"
The date the sender append is the…

aurezio
- 162
- 1
- 1
- 9
3
votes
3 answers
stat() giving wrong directory size in c
I need to find the size of a file or a directory whatever given in the commandline using stat(). It works fine for the files (both relative and absolute paths) but when I give a directory, it always returns the size as 512 or 1024.
If I print the…

Sree
- 33
- 1
- 4
2
votes
1 answer
ZeroMQ REQ-REP: Checking that replies went through
In the ZeroMQ documentation for a REP socket it says:
If the original requester doesn't exist any more the reply is silently discarded.
In my project, I'd like to have some way of knowing that the entity that made the original request is no longer…

Ryan N
- 649
- 2
- 7
- 17
2
votes
0 answers
python - auto reply email
I want to create a python script to auto reply html mail from postfix pipe:
Example in aliases file:
testmail: "| python /opt/script/autoreply.py /opt/script/autoreply.html"
The autoreply.html will contain the html email.
There is an example from…

Diamond
- 175
- 1
- 2
- 14
2
votes
1 answer
Inserting > at the start of each line in reply e-mails
In my Rails app I have a mail section in which I want to append a > character at the start of each line when replying to a message. The challenge is, how do I know when to insert a > character given the block of text doesn't contain carriage returns…

alamodey
- 14,320
- 24
- 86
- 112