使用python发送outlook电子邮件

2024-04-26 06:54:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我想通过python发送outlook电子邮件,我找到了下面的脚本

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)

Tags: importcomclientsendobjemailhtmlbody