gpt4 book ai didi

python-2.7 - 使用 Amazon SES 的 Sentry 配置

转载 作者:行者123 更新时间:2023-12-04 19:34:25 24 4
gpt4 key购买 nike

网上好像没有这方面的...

您如何参数化 sentry.conf.py 以将 Amazon SES 后端用于电子邮件?

现在,在一个 Django 项目中,我们使用:

EMAIL_BACKEND = 'django_ses.SESBackend'
EMAIL_USE_SSL = 真

AWS_ACCESS_KEY_ID = ' key '
AWS_SECRET_ACCESS_KEY = ' secret '

AWS_SES_REGION_NAME = 'eu-west-1'
AWS_SES_REGION_ENDPOINT = 'email.eu-west-1.amazonaws.com'

Sentry有点不同,有人有见解吗?

非常感谢,

最佳答案

您可以将 sentry 配置为使用 SMTP 服务器发送电子邮件,并且可以从 SES 获取 SMTP 凭据。

要设置 SES 以使用 SMTP 接口(interface),请遵循以下指南:http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-smtp.html

然后配置您的 Sentry 安装以使用这些凭据(s。https://docs.sentry.io/server/config/#mail)

示例 config.yml :

mail.backend: 'smtp'
mail.host: 'email-smtp.eu-west-1.amazonaws.com'
mail.port: 587
mail.username: 'myuser'
mail.password: 'mypassword'
mail.use-tls: true
# The email address to send on behalf of
mail.from: 'sentry@example.com'

关于python-2.7 - 使用 Amazon SES 的 Sentry 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41573735/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com