1Panel 中 Ghost 如何配置邮件发送
- 在 docker-compose.yml 中配置如下内容

services:
ghost:
container_name: ${CONTAINER_NAME}
deploy:
resources:
limits:
cpus: ${CPUS}
memory: ${MEMORY_LIMIT}
environment:
# 邮件配置(使用 SMTP)
mail__transport: SMTP
mail__from: '"发送人" <xxx@163.com>'
mail__options__host: smtp.163.com
mail__options__port: 465
mail__options__secure: true
mail__options__auth__user: xxx@163.com
mail__options__auth__pass: ***这里你想用什么邮件服务器就可以用什么
关键点:请在 Ghost 管理后台把发送者的邮件地址改为你这里的配置,否则发送不成功。
