使用python脚本发送邮件

def send_email():
    email_user = '[email protected]'
    email_password = '邮箱密码'  # 注意不一定是邮箱登录密码!!!网易邮箱等会要求用户设置SMTP等协议时,设置独立的验证密码。
    email_host = 'smtp.163.com'
    to_emails = ['[email protected]']
    yag = yagmail.SMTP(user=email_user, password=email_password, host=email_host)
    yag.send(to_emails, 'Email Title', "Test content!")  
    print('邮件发送成功')

你可能感兴趣的:(使用python脚本发送邮件)