簡體   English   中英

使用 python 實現電子郵件自動化

[英]e-mail automation using python

我使用 python 自動發送電子郵件,問題是代碼有時有效,有時無效。

在代碼 python 中,基本上從 txt 中獲取我的聯系人,然后在另一個 txt 中獲取我的電子郵件消息,然后將消息從我的 txt 消息發送到存儲在我的contact.txt 中的聯系人。

當問題出現在我更新 mycontacts.txt 並且出現的錯誤是:

Traceback (most recent call last):
  File "c:/emailbot/botmessav1.py", line 70, in <module>
    main()
  File "c:/emailbot/botmessav1.py", line 36, in main
    names, emails = get_contacts('mycontacts.txt') # read contacts
  File "c:/emailbot/botmessav1.py", line 21, in get_contacts
    names.append(a_contact.split()[0])
IndexError: list index out of range  ```

以下是聯系人列表的示例mycontacts.txt

marina marinam@gmail.com
luis luis@gmail.com
carlos carlos@gmail.com
marcelo marcelom@gmail.com

這是我正在使用的代碼:

import smtplib

from string import Template

from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

MY_ADDRESS = 'e-mail'
PASSWORD = 'password'

def get_contacts(mycontacts):
    """
    Return two lists names, emails containing names and email addresses
    read from a file specified by filename.
    """
    
    names = []
    emails = []
    with open(mycontacts, mode='r', encoding='utf-8') as contacts_file:
        for a_contact in contacts_file:
            names.append(a_contact.split()[0])
            emails.append(a_contact.split()[1])
    return names, emails

def read_template(message):
    """
    Returns a Template object comprising the contents of the 
    file specified by filename.
    """
    
    with open(message, 'r', encoding='utf-8') as template_file:
        template_file_content = template_file.read()
    return Template(template_file_content)

def main():
    names, emails = get_contacts('mycontacts.txt') # read contacts
    message_template = read_template('message.txt')

    # set up the SMTP server
    s = smtplib.SMTP(host='smtp.gmail.com', port=587)
    s.starttls()
    s.login(MY_ADDRESS, PASSWORD)

    # For each contact, send the email:
    for name, email in zip(names, emails):
        msg = MIMEMultipart()       # create a message

        # add in the actual person name to the message template
        message = message_template.substitute(PERSON_NAME=name.title())

        # Prints out the message body for our sake
        print(message)

        # setup the parameters of the message
        msg['From']=MY_ADDRESS
        msg['To']=email
        msg['Subject']="Subject"
        
        # add in the message body
        msg.attach(MIMEText(message, 'plain'))
        
        # send the message via the server set up earlier.
        s.send_message(msg)
        del msg
        
    # Terminate the SMTP session and close the connection
    s.quit()
    
if __name__ == '__main__':
    main()

您不應在 contacts.txt 文件中有任何空行

marina marinam@gmail.com
luis luis@gmail.com
carlos carlos@gmail.com
marcelo marcelom@gmail.com

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM