电子邮件(一)

news/2024/11/8 4:33:49/

在Python shell中发送电子邮件的hello.py代码

import os
from flask import Flask, render_template, session, redirect, url_for
from flask_script import Manager, Shell
from flask_bootstrap import Bootstrap
from flask_moment import Moment
from flask_wtf import Form
from wtforms import StringField, SubmitField
from wtforms.validators import Required
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate, MigrateCommand
from flask_mail import Mailbasedir = os.path.abspath(os.path.dirname(__file__))app = Flask(__name__)
app.config['SECRET_KEY'] = 'hard to guess string'
app.config['SQLALCHEMY_DATABASE_URI'] =\'sqlite:///' + os.path.join(basedir, 'data.sqlite')
app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True
app.config['MAIL_SERVER'] = 'smtp.qq.com'
app.config['MAIL_PORT'] = 25
app.config['MAIL_USE_TLS'] = True
app.config['MAIL_USERNAME'] = os.environ.get('MAIL_USERNAME')
app.config['MAIL_PASSWORD'] = os.environ.get('MAIL_PASSWORD')manager = Manager(app)
bootstrap = Bootstrap(app)
moment = Moment(app)
db = SQLAlchemy(app)
migrate = Migrate(app, db)
mail = Mail(app)class Role(db.Model):__tablename__ = 'roles'id = db.Column(db.Integer, primary_key=True)name = db.Column(db.String(64), unique=True)users = db.relationship('User', backref='role', lazy='dynamic')def __repr__(self):return '<Role %r>' % self.nameclass User(db.Model):__tablename__ = 'users'id = db.Column(db.Integer, primary_key=True)username = db.Column(db.String(64), unique=True, index=True)role_id = db.Column(db.Integer, db.ForeignKey('roles.id'))def __repr__(self):return '<User %r>' % self.usernameclass NameForm(Form):name = StringField('What is your name?', validators=[Required()])submit = SubmitField('Submit')def make_shell_context():return dict(app=app, db=db, User=User, Role=Role)
manager.add_command("shell", Shell(make_context=make_shell_context))
manager.add_command('db', MigrateCommand)@app.errorhandler(404)
def page_not_found(e):return render_template('404.html'), 404@app.errorhandler(500)
def internal_server_error(e):return render_template('500.html'), 500@app.route('/', methods=['GET', 'POST'])
def index():form = NameForm()if form.validate_on_submit():user = User.query.filter_by(username=form.name.data).first()if user is None:user = User(username=form.name.data)db.session.add(user)session['known'] = Falseelse:session['known'] = Truesession['name'] = form.name.datareturn redirect(url_for('index'))return render_template('index.html', form=form, name=session.get('name'),known=session.get('known', False))if __name__ == '__main__':manager.run()

问题出现:

(venv) C:\Users\Geek Lee\Geek-Lee.github.io>pip install flask-mail
Collecting flask-mail
Installing collected packages: blinker, flask-mail
Successfully installed blinker-1.4 flask-mail-0.9.1
(venv) C:\Users\Geek Lee\Geek-Lee.github.io>set MAIL_USERNAME = 1234567890@qq.com
(venv) C:\Users\Geek Lee\Geek-Lee.github.io>set MAIL_PASSWORD = 
abcdefghijkl
(venv) C:\Users\Geek Lee\Geek-Lee.github.io>python hello.py shell
>>> from flask_mail import Message
>>> from hello import mail
>>> msg = Message('test subject',
sender='1234567890@qq.com',recipients=['1234567890@qq.com'])
>>> msg.body = 'text body'
>>> msg.html = '<b>HTML</b> body'
>>> with app.app_context():
...     mail.send(msg)
...
Traceback (most recent call last):File "<console>", line 2, in <module>File "C:\Users\GEEKLE~1\GEEK-L~1.IO\venv\lib\site-packages\flask_mail.py", lin
e 492, in sendmessage.send(connection)File "C:\Users\GEEKLE~1\GEEK-L~1.IO\venv\lib\site-packages\flask_mail.py", lin
e 427, in sendconnection.send(self)File "C:\Users\GEEKLE~1\GEEK-L~1.IO\venv\lib\site-packages\flask_mail.py", lin
e 192, in sendmessage.rcpt_options)File "E:\python\Lib\smtplib.py", line 778, in sendmailraise SMTPSenderRefused(code, resp, from_addr)
smtplib.SMTPSenderRefused: (503, b'Error: need EHLO and AUTH first !', '1234567890@qq.com')

Flask学习之十一 邮件支持
完了之后我因为多次测试出现服务器拒绝了发件人地址,然后我到现在还没找到解决办法,于是乎又换了163邮箱= =
SMTPSenderRefused: (503, 'Error: need EHLO and AUTH first !', u'username@qq.com')


终于找到解决办法了
把hello.py下面两项config直接填进去可以解决,如下

app.config['MAIL_USERNAME'] = '1234567890@qq.com'
# 注意两边带'',字符串类型
app.config['MAIL_PASSWORD'] = '授权码'
# 注意两边带''
C:\Users\Geek Lee\Geek-Lee.github.io>venv\Scripts\activate(venv) C:\Users\Geek Lee\Geek-Lee.github.io>set MAIL_USERNAME = 1234567890@qq.co
m(venv) C:\Users\Geek Lee\Geek-Lee.github.io>set MAIL_PASSWORD = absdsdfsdfsfs(venv) C:\Users\Geek Lee\Geek-Lee.github.io>python hello.py shell
>>> from flask_mail import Message
>>> from hello import mail
>>> msg = Message('test subject', sender='2546701377@qq.com',
...     recipients=['2546701377@qq.com'])
>>> msg.body = 'text body'
>>> msg.html = '<b>HTML</b> body'
>>> with app.app_context():
...     mail.send(msg)
...
Traceback (most recent call last):File "<console>", line 2, in <module>File "C:\Users\GEEKLE~1\GEEK-L~1.IO\venv\lib\site-packages\flask_mail.py", lin
e 492, in sendmessage.send(connection)File "C:\Users\GEEKLE~1\GEEK-L~1.IO\venv\lib\site-packages\flask_mail.py", lin
e 427, in sendconnection.send(self)File "C:\Users\GEEKLE~1\GEEK-L~1.IO\venv\lib\site-packages\flask_mail.py", lin
e 192, in sendmessage.rcpt_options)File "E:\python\Lib\smtplib.py", line 778, in sendmailraise SMTPSenderRefused(code, resp, from_addr)
smtplib.SMTPSenderRefused: (503, b'Error: need EHLO and AUTH first !', '25467013
77@qq.com')
>>> ^Z
############################直接在填入电子邮箱和授权码后############(venv) C:\Users\Geek Lee\Geek-Lee.github.io>python hello.py shell
>>> from flask_mail import Message
>>> from hello import mail
>>> msg = Message('test subject', sender='2546701377@qq.com',
...     recipients=['2546701377@qq.com'])
>>> msg.body = 'text body'
>>> msg.html = '<b>HTML</b> body'
>>> with app.app_context():
...     mail.send(msg)
...
>>>
###################成功了##########################
####我想应该是在cmd中写入密码和授权码,但是环境没有接受到的关系,基本可以确定qq邮箱设置是对的,出问题和他没关系

备注,如果用163邮箱,配置要改成:
复制代码

# mail server settings
MAIL_SERVER = 'smtp.163.com'
MAIL_PORT = 587
MAIL_USE_TLS = True
MAIL_USE_SSL = True
MAIL_USERNAME = os.environ.get('MAIL_USERNAME')
MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD')
# administrator list
ADMINS = ['your-username@163.com']

复制代码
TLS要改成True,否则会出现以下错误:

smtplib.SMTPServerDisconnected: Connection unexpectedly closed

这里写图片描述
如果你按照cmd里面的设置环境变量的方法set,那么,你就会碰到授权错误553或者550的信息,如下:
这里写图片描述
那就试试powershell吧。
Flask Web 开发 邮件功能
PowerShell的环境变量


http://www.ppmy.cn/news/333050.html

相关文章

大学邮箱imap服务器,电子邮件

Q: 收到“管理员”发来的邮件,提醒“账号过期”、“容量超限”、“系统更新”等问题让我回复邮件提供账号和密码、或要求点击链接并登录账号,要不要提供? A: 切记不要在邮件中回复密码信息,网络信息中心绝对不会索要用户的任何密码信息。对于邮件中提供的链接,注意观察,如…

手机怎么申请邮箱?手机邮箱下载

现在社交网络科技越来越发达&#xff0c;很多人为了工作生活方便会在手机里面装各种软件&#xff0c;邮箱软件更是我们上班族的必备&#xff0c;但是手机邮箱下载哪个好呢&#xff1f;市场上有不少品牌可以手机注册邮箱&#xff0c;像TOM企业邮箱&#xff0c;QQ邮箱等都是很不错…

电子邮件注册帐号大全_电子邮件

电子邮件注册帐号大全 I’m drowning in it… I had a dream last night that I sent the wrong replies to various people’s emails. That would be bad. What’s worse is that I’m dreaming about email… aaaaaahhhh… go generate your own evil plan. 我被淹死了……昨…

mailru邮箱下载_Mail.Ru邮件下载

Mail.Ru邮件是一款手机电子邮箱应用&#xff0c;应用界面简洁&#xff0c;支持多账户&#xff0c;可以轻松切换&#xff0c;为大家的生活和工作带来了极大的便利&#xff0c;可缓存邮件&#xff0c;在没有网络的时候也可以轻松查看。 Mail.Ru邮件来自俄罗斯的邮箱客户端&#x…

POP3:基于命令行的电子邮件(EMail)在线查看和批量下载工具

使用该工具可以在不安装outlook和foxmail等邮件客户端的情况下快速下载指定邮箱的邮件&#xff0c;并将下载的邮件以eml格式进行保存。 附&#xff1a; 查看eml格式的邮件可使用 EmlReader 工具&#xff0c;该工具不到300K&#xff0c;绿色免安装。 【工具特点】 1、基于命令…

Email电子邮件

【释义】 电子邮件&#xff08;electronic mail&#xff0c;简称E-mail,标志:,也被大家昵称为“伊妹儿”&#xff09;又称电子信箱、电子邮政&#xff0c;它是—种用电子手段提供信息交换的通信方式。是Internet应用最广的服务&#xff1a;通过网络的电子邮件系统&#xff0c;用…

我的软件选择-电子邮件EMAIL、下载软件

我的软件选择&#xff0d;电子邮件EMAIL、下载软件 2005年2月12日20:29星期六 [RAN乱] 总共进行了七年的软件开发&#xff0c;而由于我的性格&#xff0c;所以对于所有的软件都喜欢尝试&#xff0c;所以陆续作个总结 电子邮件&#xff1a;由于工作需要&#xff0c;EMAIL软件…

电子邮件附件下载器简介

1 电子邮件附件下载器的作用 电子邮件附件下载器是Github中的开源工具&#xff0c;可以非常方便的批量下载电子邮件附件&#xff0c;并将这些附件保存到电脑本地磁盘指定的文件夹中&#xff0c;节约宝贵的时间&#xff0c;适合经常通过电子邮件接受大量文件的人士使用。 在日常…