需求背景
假设我们想设计一个定时任务,比如每天定时的用python来测试服务是否在正常运行,但是又不希望每天登录到系统后台去查看服务状态。这里我们就可以采取python的smtp模块进行任务结果广播,申请一个公共邮箱,每次python执行完定时的测试任务后,调用smtp的接口将测试结果广播给需要接收的人的邮箱中。这就使得,我们可以在移动端就能按照我们的意愿实时监测系统的状态。
qq邮箱的smtp服务配置流程
1.浏览器登录进入qq邮箱
2.进入设置-账户
3.找到pop3-smtp服务的位置,点击开启
4.进行一些验证程序
5.开启成功后,系统会给出一串长度为16的随机口令,用来替代密码进行第三方登录
6.配置smtp服务器地址和端口号
使用授权码登录smtp并发送邮件
这里我们直接展示成果代码,其中一些隐私信息做了处理:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# smtp_test.py
#!/usr/bin/python
# -*- coding: utf-8 -*-
import smtplib
from email.mime.text import mimetext
from email.header import header
# 第三方 smtp 服务
mail_host = "smtp.qq.com" #设置服务器
mail_user = "your_name@qq.com" #用户名
mail_pass = "passpasspasspass" #口令
sender = 'your_name@qq.com'
receivers = [ 'your_target@qq.com' ] # 接收邮件,可设置为你的qq邮箱或者其他邮箱
message = mimetext( 'python smtp 邮件发送测试...' , 'plain' , 'utf-8' )
message[ 'from' ] = header( "smtp email" , 'utf-8' )
message[ 'to' ] = header( "test message" , 'utf-8' )
subject = 'python smtp 邮件测试'
message[ 'subject' ] = header(subject, 'utf-8' )
try :
smtpobj = smtplib.smtp()
smtpobj.connect(mail_host, 25 ) # 25 为 smtp 端口号
smtpobj.login(mail_user,mail_pass)
smtpobj.sendmail(sender, receivers, message.as_string())
print ( "邮件发送成功" )
except smtplib.smtpexception:
import traceback
traceback.print_exc()
print ( "无法发送邮件" )
|
这里的服务器配置的smtp的服务器smtp.qq.com,对应端口号配置为25,这里的口令和帐号应替换为读者自己的授权口令和帐号。该程序的正常结果如下:
1
2
|
[dechin@dechin - manjaro smtp]$ python3 smtp_test.py
邮件发送成功
|
另外由于这里采用了tracback做错误日志采集,因此即使有报错程序也能继续执行,但是会广播错误日志。
最后通过查询邮箱里面的邮件(有时候可能会被放到垃圾箱里面),正常情况下可以看到一份这样的邮件:
使用crontab添加linux系统定时任务
crontab是linux系统下自带的定时任务配置服务,基本使用方法就是通过crontab -l来查看定时任务,以及通过crontab -e来编辑定时任务。但是由于自带的编辑器为nano,使用起来非常的不顺手,所以我们可以将其编辑器配置为vim再进行使用,相关指令为:
[dechin@dechin-manjaro smtp]$ export editor="/usr/bin/vim" ; crontab -e
当然,在当前用户登录界面下,只需要临时配置一次即可一直直接使用crontab -e进行配置,持久生效需要修改配置文件,这里不展开介绍。crontab的任务配置可以参考如下介绍(图片来自于参考链接2):
一个定时任务+smtp广播的示例
这里我们首先创建一个简单的打印随机数的任务,这样如果我们在crontab中添加一个执行该程序的定时任务,就可以每次产生一个不同的随机数并且将其输出到一个指定的文件中,再通过另外一个smtp的定时任务进行读取和广播。以下是打印随机数的任务内容:
1
2
3
|
[dechin@dechin - manjaro smtp]$ cat random_job.py
import random
print (random.random())
|
我们将前面用到的smtp的任务稍作修改,将随机数读取到邮件标题中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# smtp_test.py
#!/usr/bin/python
# -*- coding: utf-8 -*-
import smtplib
from email.mime.text import mimetext
from email.header import header
# 第三方 smtp 服务
mail_host = "smtp.qq.com" #设置服务器
mail_user = "your_email@qq.com" #用户名
mail_pass = "passpasspasspass" #口令
sender = 'your_email@qq.com'
receivers = [ 'your_target@qq.com' ] # 接收邮件,可设置为你的qq邮箱或者其他邮箱
message = mimetext( 'python smtp 邮件发送测试...' , 'plain' , 'utf-8' )
message[ 'from' ] = header( "smtp email" , 'utf-8' )
message[ 'to' ] = header( "test message" , 'utf-8' )
random_number = 1
with open ( '/home/dechin/projects/2021-python/smtp/random_number.txt' , 'r' ) as file :
random_number = float ( file .readlines()[ 0 ])
subject = 'the random number generated is: ' + str (random_number)
message[ 'subject' ] = header(subject, 'utf-8' )
try :
smtpobj = smtplib.smtp()
smtpobj.connect(mail_host, 25 ) # 25 为 smtp 端口号
smtpobj.login(mail_user,mail_pass)
smtpobj.sendmail(sender, receivers, message.as_string())
print ( "邮件发送成功" )
except smtplib.smtpexception:
import traceback
traceback.print_exc()
print ( "无法发送邮件" )
|
最后,再配置好crontab
定时任务如下:
1
2
3
|
[dechin@dechin - manjaro smtp]$ crontab - l
* * * * * python3 / home / dechin / projects / 2021 - python / smtp / random_job.py > / home / dechin / projects / 2021 - python / smtp / random_number.txt
* * * * * python3 / home / dechin / projects / 2021 - python / smtp / smtp_test.py
|
上面由于为了尽快的展示定时任务效果因此我们设置为每分钟都执行一次任务,实际场景中不需要这么高频率的定时任务测试。
最后查看邮箱收件箱,我们发现了一系列的定时任务的内容反馈如下:
本文首发链接为:https://www.cnblogs.com/dechinphy/p/smtp.html
作者id:dechinphy
以上就是python调用smtp服务自动发送email的实现步骤的详细内容,更多关于python调用smtp服务自动发送email的资料请关注服务器之家其它相关文章!
原文链接:https://www.cnblogs.com/dechinphy/p/smtp.html