Я хочу отправить Outlook по электронной почте через python, и я нашел ниже скрипт
import win32com.client
from win32com.client import Dispatch, constants
const=win32com.client.constants
olMailItem = 0x0
obj = win32com.client.Dispatch("Outlook.Application")
newMail = obj.CreateItem(olMailItem)
newMail.Subject = "I AM SUBJECT!!"
newMail.BodyFormat = 2
newMail.HTMLBody = "<HTML><BODY>Enter the <span style='color:red'>message</span> text here.</BODY></HTML>"
newMail.To = "my_email@email.com"
newMail.display()
newMail.Send()
Все работает до newMail.Send () , выдает эту ошибку
Traceback (most recent call last):
File "<ipython-input-46-7e8e370e48a8>", line 1, in <module>
newMail.Send()
File "<COMObject CreateItem>", line 2, in Send
com_error: (-2147467260, 'Operation aborted', None, None)