reply

Remove the "RE:" when replying to emails using Python

Remove the "RE:" when replying to emails using Python Question: I am using python to automate some outlook email replies and I need to remove the "RE:" from the subject when using the email.ReplyAll(), I tried to do email.Subject = subject before replying but it still adds the "RE:". FYI, I do not intend to …

Total answers: 1

Reply to email using python 3.4

Reply to email using python 3.4 Question: 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 send_mail_multi(headers, text, msgHtml="", orig=None): """ """ …

Total answers: 1