|
发表于 2025-2-11 21:35:19
|
显示全部楼层
可以试一下这段不带SSL的SMTP发信配置 我测试都是正常收到的
# The email from which all outgoing emails are sent
# could user either email@yourdomain.com or BrandName <email@yourdomain.com>
MAILER_SENDER_EMAIL=客服系统 <email@yourdomain.com>
#SMTP domain key is set up for HELO checking
SMTP_DOMAIN=yourdomain.com
# Set the value to "mailhog" if using docker-compose for development environments,
# Set the value as "localhost" or your SMTP address in other environments
# If SMTP_ADDRESS is empty, Chatwoot would try to use sendmail(postfix)
SMTP_ADDRESS=
SMTP_PORT=
SMTP_USERNAME=
SMTP_PASSWORD=
# plain,login,cram_md5
SMTP_AUTHENTICATION=login
SMTP_ENABLE_STARTTLS_AUTO=true
# Can be: 'none', 'peer', 'client_once', 'fail_if_no_peer_cert', see http://api.rubyonrails.org/classes/ActionMailer/Base.html
SMTP_OPENSSL_VERIFY_MODE=peer
# Comment out the following environment variables if required by your SMTP server
SMTP_TLS=false
SMTP_SSL=false
# SMTP_OPEN_TIMEOUT
# SMTP_READ_TIMEOUT |
|