2

友達に情報を自動的に送信するPythonスクリプトを作成しました。私が使用SMTPlibしたのは、私に送信しただけの場合、または追加の電子メールを1通送信した場合にうまく機能します。

17通のメール(送信者のメールを含む)に送信しようとすると、WebベースのGmailの送信済みメールに表示されます。メールが送信されたのを見ましたが、受信しませんでした。最初の受信者だけが電子メールを受信しました。そのメールから全員に返信すると、全員がその返信だけを受け取ります。

スクリプトから送信したときになぜ受信されなかったのかわかりません。友人にスパムをチェックしてもらいましたが、彼女は何も見つかりませんでした。

これは私のコードです:

#!/usr/bin/env python
import smtplib
import csv
from datetime import datetime, timedelta

SMTP_SERVER  = 'smtp.gmail.com'
SMTP_PORT = 587

sender = 'MYBOT@gmail.com'

password = None
with open('pass', 'rt') as f:
    password = f.read().strip('\n')


def send_mail(recipient, subject, body):
    """
    Send happy bithday mail
    """
    headers = ["From: " + sender,
               "Subject: " + subject,
               "To: " + recipient,
               "MIME-Version: 1.0",
               "Content-Type: text/html"]

    headers = "\r\n".join(headers) 

    smtp = smtplib.SMTP(SMTP_SERVER, SMTP_PORT)
    smtp.ehlo()
    smtp.starttls()
    smtp.ehlo
    smtp.login(sender, password)

    body = "" + body +""
    smtp.sendmail(sender, recipient, headers + "\r\n\r\n" + body)
    print "Sent to ", 
    print recipient

    smtp.quit()

def send_happybirthday(recipient):
    body = """Happy birthday to you!
            \n<br/>From C2k8pro with love
          """
    subject ='[BirthReminder] Happy birthday to you! from C2k8pro'
    send_mail(recipient, subject, body)


def send_notification(all_mails, names):
    body = """Tomorrow is birthday of %s""" % names
    send_mail(all_mails, body,  body)

def test_send_mail():

    notify_body = """Tomorrow is birthday of """
    recipients = ['MYBOT@gmail.com']

    today = datetime.now()
    format = "%d-%m-%Y"
    print today
    today_in_str = datetime.strftime(today, format)


def read_csv():
    FILENAME = 'mails.csv'
    reader = csv.reader(open(FILENAME, 'rt'), delimiter=',')

    today = datetime.now()
    one_day = timedelta(days=1)
    tomorrow = today + one_day

    all_mails = []
    str_format = "%d/%m"
    str_today = today.strftime(str_format)
    str_tomorrow = tomorrow.strftime(str_format)

    print 'Today is ', str_today
    tomorrow_birth = []
    for row in reader:
        name = row[1].strip()
        dob = row[2]
        dmy = dob.split("/")
        mail = row[3]
        all_mails.append(mail)

        #TODO fix dob with only 1 digit
        birth_date = dmy[0] + "/" + dmy[1]
        if str_today == birth_date:
            print 'Happy birthday %s' % name

            try:
                send_happybirthday(mail)
            except Exception, e:
                print e

        elif str_tomorrow == birth_date:
            tomorrow_birth.append(name)
            print "Tomorrow is %s's birthday" % name

    # Remove empty string
    all_mails = filter(None, all_mails)
    print 'All mails: ', len(all_mails)
    str_all_mails = ', '.join(all_mails)

    if tomorrow_birth:
        all_tomorrow = ', '.join(tomorrow_birth)
        send_notification(str_all_mails, all_tomorrow)


def main():
    read_csv()

if __name__ == "__main__":
    main()

誰でもこれを説明できますか?ありがとう!

4

1 に答える 1

1

ここから解決策を見つけました

Pythonsmtplibを使用して.txtファイルから複数の受信者に電子メールを送信する

msg ['To']とsendmail()に、コンマで区切られたすべての受信者を含む文字列を渡しました。msg ['To']にも当てはまりますが、sendmailではリストを使用する必要があります。

于 2012-07-31T17:24:13.633 に答える