我正在使用Outlook 2003
。
Outlook 2003
使用发送电子邮件(通过)的最佳方法是什么Python
?
我正在使用Outlook 2003
。
Outlook 2003
使用发送电子邮件(通过)的最佳方法是什么Python
?
Answers:
有关使用Outlook的解决方案,请参见下面的TheoretiCAL答案。
否则,请使用python随附的smtplib。请注意,这将要求您的电子邮件帐户允许smtp,默认情况下不一定启用此功能。
SERVER = "smtp.example.com"
FROM = "yourEmail@example.com"
TO = ["listOfEmails"] # must be a list
SUBJECT = "Subject"
TEXT = "Your Text"
# Prepare actual message
message = """From: %s\r\nTo: %s\r\nSubject: %s\r\n\
%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)
# Send the mail
import smtplib
server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()
编辑:此示例使用保留域,如RFC2606中所述
SERVER = "smtp.example.com"
FROM = "johnDoe@example.com"
TO = ["JaneDoe@example.com"] # must be a list
SUBJECT = "Hello!"
TEXT = "This is a test of emailing through smtp of example.com."
# Prepare actual message
message = """From: %s\r\nTo: %s\r\nSubject: %s\r\n\
%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)
# Send the mail
import smtplib
server = smtplib.SMTP(SERVER)
server.login("MrDoe", "PASSWORD")
server.sendmail(FROM, TO, message)
server.quit()
为了使它真正与gmail兼容,Doe先生需要进入gmail中的选项标签并将其设置为允许smtp连接。
请注意,添加了登录行以对远程服务器进行身份验证。原始版本不包含此内容,我个人对此有所疏忽。
smtp
服务器与电子邮件不同-因此,即使我使用其他电子邮件地址(而非)发送电子邮件,我也需要channel
通过互联网提供商(att
)进行smtpatt's
传输。Outlook
已配置为处理此问题。如果还有其他支持的解决方案(Outlook
基于非解决方案),我很高兴听到建议。
import win32com.client as win32
outlook = win32.Dispatch('outlook.application')
mail = outlook.CreateItem(0)
mail.To = 'To address'
mail.Subject = 'Message subject'
mail.Body = 'Message body'
mail.HTMLBody = '<h2>HTML Message body</h2>' #this field is optional
# To attach a file to the email (optional):
attachment = "Path to the attachment"
mail.Attachments.Add(attachment)
mail.Send()
将使用您的本地Outlook帐户进行发送。
请注意,如果您尝试执行上面未提到的操作,请查看COM docs属性/方法:https : //msdn.microsoft.com/zh-cn/vba/outlook-vba/articles/mailitem-object-outlook。在上面的代码中,mail
是一个MailItem对象。
mail.To = "a@b.com;c@d.com"
,让我知道它是否有效
通过Google检查,有很多示例,请参见此处的示例。
内联以便于查看:
import win32com.client
def send_mail_via_com(text, subject, recipient, profilename="Outlook2003"):
s = win32com.client.Dispatch("Mapi.Session")
o = win32com.client.Dispatch("Outlook.Application")
s.Logon(profilename)
Msg = o.CreateItem(0)
Msg.To = recipient
Msg.CC = "moreaddresses here"
Msg.BCC = "address"
Msg.Subject = subject
Msg.Body = text
attachment1 = "Path to attachment no. 1"
attachment2 = "Path to attachment no. 2"
Msg.Attachments.Add(attachment1)
Msg.Attachments.Add(attachment2)
Msg.Send()
alert message
询问我是否要继续,或者终止访问脚本。有没有办法跳过这个alert message
?
outlook
,可能是病毒等,如果我想继续。
win32
模块的Mac OS上可以做同样的事情吗?
使用pywin32:
from win32com.client import Dispatch
session = Dispatch('MAPI.session')
session.Logon('','',0,1,0,0,'exchange.foo.com\nUserName');
msg = session.Outbox.Messages.Add('Hello', 'This is a test')
msg.Recipients.Add('Corey', 'SMTP:corey@foo.com')
msg.Send()
session.Logoff()
outlook
错误消息吗?
适用于OFFICE 365的所有解决方案中最简单的:
from O365 import Message
html_template = """
<html>
<head>
<title></title>
</head>
<body>
{}
</body>
</html>
"""
final_html_data = html_template.format(df.to_html(index=False))
o365_auth = ('sender_username@company_email.com','Password')
m = Message(auth=o365_auth)
m.setRecipients('receiver_username@company_email.com')
m.setSubject('Weekly report')
m.setBodyHTML(final)
m.sendMessage()
此处df是转换为html表的数据框,该表将被注入html_template
我想使用SMTPLIB发送电子邮件,它更简单并且不需要本地设置。在其他答案没有直接帮助之后,这就是我所做的。
在浏览器中打开Outlook;转到右上角,单击设置的齿轮图标,从出现的下拉列表中选择“选项”。转到“帐户”,单击“ Pop和Imap”,您将看到以下选项:“让设备和应用使用弹出窗口”,
选择是选项,然后保存更改。
这是后面的代码;编辑需要的地方。最重要的是在此处启用POP和服务器代码。
import smtplib
body = 'Subject: Subject Here .\nDear ContactName, \n\n' + 'Email\'s BODY text' + '\nYour :: Signature/Innitials'
try:
smtpObj = smtplib.SMTP('smtp-mail.outlook.com', 587)
except Exception as e:
print(e)
smtpObj = smtplib.SMTP_SSL('smtp-mail.outlook.com', 465)
#type(smtpObj)
smtpObj.ehlo()
smtpObj.starttls()
smtpObj.login('me@outlook.com', "password")
smtpObj.sendmail('sender@outlook.com', 'recipient@gmail.com', body) # Or recipient@outlook
smtpObj.quit()
pass
除了win32,如果您的公司设置了Web Outlook,还可以尝试由Microsoft正式开发的PYTHON REST API。(https://msdn.microsoft.com/zh-cn/office/office365/api/mail-rest-operations)
这是我尝试使用Win32的一个:
import win32com.client as win32
import psutil
import os
import subprocess
import sys
# Drafting and sending email notification to senders. You can add other senders' email in the list
def send_notification():
outlook = win32.Dispatch('outlook.application')
olFormatHTML = 2
olFormatPlain = 1
olFormatRichText = 3
olFormatUnspecified = 0
olMailItem = 0x0
newMail = outlook.CreateItem(olMailItem)
newMail.Subject = sys.argv[1]
#newMail.Subject = "check"
newMail.BodyFormat = olFormatHTML #or olFormatRichText or olFormatPlain
#newMail.HTMLBody = "test"
newMail.HTMLBody = sys.argv[2]
newMail.To = "xyz@abc.com"
attachment1 = sys.argv[3]
attachment2 = sys.argv[4]
newMail.Attachments.Add(attachment1)
newMail.Attachments.Add(attachment2)
newMail.display()
# or just use this instead of .display() if you want to send immediately
newMail.Send()
# Open Outlook.exe. Path may vary according to system config
# Please check the path to .exe file and update below
def open_outlook():
try:
subprocess.call(['C:\Program Files\Microsoft Office\Office15\Outlook.exe'])
os.system("C:\Program Files\Microsoft Office\Office15\Outlook.exe");
except:
print("Outlook didn't open successfully")
#
# Checking if outlook is already opened. If not, open Outlook.exe and send email
for item in psutil.pids():
p = psutil.Process(item)
if p.name() == "OUTLOOK.EXE":
flag = 1
break
else:
flag = 0
if (flag == 1):
send_notification()
else:
open_outlook()
send_notification()
smtp
服务器与电子邮件不同-因此,即使我使用其他电子邮件地址(而非)发送电子邮件,我也需要channel
通过Internet提供商(att
)进行smtpatt's
。Outlook
已配置为处理此问题。如果还有其他支持的解决方案(Outlook
基于非解决方案),我很高兴听到建议。