Quantcast
Channel: Active questions tagged email - Stack Overflow
Viewing all articles
Browse latest Browse all 29767

Require receipts when sending Outlook email by Python

$
0
0

Simple lines to send Outlook email by Python,

referencing from Send email through Python using Outlook 2016 without opening it

import win32com.client as win32outlook = win32.Dispatch('outlook.application')mail = outlook.CreateItem(0)mail.To = 'contact@sample.com'mail.Subject = 'Message subject'mail.Body = 'Message body'mail.Send()

Is it possible to require Delivery Receipt and Read Receipt when sending an email? What would be the good way?

enter image description here


Viewing all articles
Browse latest Browse all 29767

Trending Articles