sentry email 邮箱发送

# **** 省略一堆
mail.backend: 'smtp'  # Use dummy if you want to disable email entirely
mail.host: 'smtp.qq.com'
mail.port: 25
mail.username: '875982361@qq.com'
mail.password: '********'
mail.use-tls: false
# The email address to send on behalf of
mail.from: '875982361@qq.com'
# 备注: host 就是stmp服务地址, qq的是这个 其他需要自己去找一下 
# 我之前在网上找到一个 stmp.exmail.qq.com 这个是无效的
# port 端口和 tls对应 port  25 对应 tls false  port 587 对应 tls true
# 这里的密码 对应的是授权码 在上图中生成的 

  

原文地址:https://www.cnblogs.com/agang-php/p/14302729.html