English 中文(简体)
以 Python 发送电子邮件主题
原标题:Sending email subject in Python

程序发送电子邮件时,我的电子邮件中的主题部分出现时,我遇到了问题。我以为我在跟踪RFC SMTP的插图,但我似乎无法弄清楚我在做什么。非常感激任何帮助。

def email():

    sender =  [email protected] 
    receivers = [ [email protected] ]

    message = """From: From Admin <[email protected]>
    To:To Person <[email protected]>
    Subject: Important Information

    This is a test email message.
    """ 
    try:
        smtpObj = smtplib.SMTP( domain.com , 25)
        smtpObj.sendmail(sender, receivers, message)
        print "Successfully sent email"
    except smtplib.SMTPException:
        print( Error: unable to send email )
问题回答

不知道你的代码有什么问题

FWWW, 我曾经使用字符串. join 来创建我过去的信息体:

def send_email():
    import string,smtplib

    SMTPserver = "smtp.com"
    # To is a comma-separated list
    To = "[email protected]"
    From = "[email protected]"
    Subj = "test subject"
    Text = """test email.
    Not sure what the problem is
    Multi-line anyway."""

    Body = string.join((
        "From: %s" % From,
        "To: %s" % To,
        "Subject: %s" % Subj,
        "",
        Text,
        ), "
")

    s = smtplib.SMTP(SMTPserver)
    s.sendmail(From,[To],Body)

    s.quit()

- J,J,J,J,J,J,J,J,J,J,J,J,J,J,J,J

Try the example from http://docs.python.org/library/email-examples.html Or give my example code a go. I didnt need the from header but I guess you can add it if you want.

import smtplib

USER_NAME =  [email protected] 
PASSWORD = getpass.getpass("%s s PASSWORD: " % USER_NAME)
DEBUG = True
MESSAGE_FORMAT = "From: %s
To: %s
Subject: %s

%s" # %(fromAddr,to,subject,text)

def sendEmail(recipient,message):
    SMTP_SERVER_URL =  smtp.gmail.com 
    mailserver = smtplib.SMTP(SMTP_SERVER_URL)
    if DEBUG: 
        mailserver.set_debuglevel(1)
        mailserver.ehlo()
        mailserver.starttls()
        mailserver.ehlo()
    mailserver.login(USER_NAME,PASSWORD)
    mailserver.sendmail(  , recipient, message)
    mailserver.close()

def sendEmailWithFields(to,subject,text):
    message = MESSAGE_FORMAT%(  , to, subject, text)
    sendEmail(to,message)

if __name__ ==  __main__ :
    to =  [email protected] 
    subject =  The subject 
    text =  The text body 
    sendEmailWithFields(to,subject,text)




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签