通过Python发送Outlook电子邮件?


74

我正在使用Outlook 2003

Outlook 2003使用发送电子邮件(通过)的最佳方法是什么Python


2
@ThiefMaster:我的smtp服务器与电子邮件不同-因此,即使我使用其他电子邮件地址(而非)发送电子邮件,我也需要channel通过Internet提供商(att)进行smtp att'sOutlook已配置为处理此问题。如果还有其他支持的解决方案(Outlook基于非解决方案),我很高兴听到建议。
user3262424 2011年

正确的解决方案是使用python的smtplib
ThiefMaster 2011年

Answers:


31

有关使用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连接。

请注意,添加了登录行以对远程服务器进行身份验证。原始版本不包含此内容,我个人对此有所疏忽。


11
这不是问题。问题是关于使用Win32 API来控制Outlook
Andreas Jung

@Spencer Rathbun:谢谢。问题是这样的:我的smtp服务器与电子邮件不同-因此,即使我使用其他电子邮件地址(而非)发送电子邮件,我也需要channel通过互联网提供商(att)进行smtpatt's传输。Outlook已配置为处理此问题。如果还有其他支持的解决方案(Outlook基于非解决方案),我很高兴听到建议。
user3262424 2011年

1
@ user3262424那么您的电子邮件地址与您的smtp服务器不同吗?这应该在smtp服务器上处理。需要将其设置为将不是源于此的电子邮件传递到正确的电子邮件服务器。设置不正确,这会使垃圾邮件发送者遍历您。但是想必您知道所涉及的IP地址,并且可以在允许列表中进行设置。
Spencer Rathbun

@Spencer Rathbun:谢谢,但是我不确定如何使用您的脚本。我使用它发送电子邮件失败。
user3262424 2011年

3
上帝禁止,如果您在公司防火墙后面,则只能通过Outlook发送邮件。
法尔肯教授

152
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对象。


是否有可能是HTML正文。像电子邮件正文与图片
Aakash古普塔

3
更新的答案。mail.HTMLBody允许您将其设置为html字符串
TheoretiCAL

6
简单直接的答案!在Python 3.6.1。中正常工作。
abautista

1
@ViktorDemin查看官方COM文档,msdn.microsoft.com / zh
TheoretiCAL

1
@pyd尝试在中简单地用冒号分隔的电子邮件字符串mail.To = "a@b.com;c@d.com",让我知道它是否有效
TheoretiCAL

30

通过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()

谢谢,这很好。问题是,Outlook不断alert message询问我是否要继续,或者终止访问脚本。有没有办法跳过这个alert message
user3262424 2011年

@ user3262424-弹出窗口的确切内容是什么?
史蒂夫·汤森

我现在不在那台计算机旁边。通知脚本正在尝试访问的内容outlook,可能是病毒等,如果我想继续。
user3262424 2011年

然后可能是一些防病毒插件正在进行电子邮件筛选。我怀疑您是否可以绕过它,而无需在桌面上手动操作来禁用它。烦死了
史蒂夫·汤森

1
有没有win32模块的Mac OS上可以做同样的事情吗?
Malik Brahimi

7

使用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错误消息吗?
user3262424 2011年

1
它可能会在较新版本的Windows上触发验证。不知道如何抑制。我不再运行Windows。
科里·戈德堡

4

适用于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


2

我想使用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

1
对于那些想知道的人,此方法还可以与smtp.office365.com一起使用。
Weboide


1

这是我尝试使用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()
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.