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?