Phabricator SES电子邮件?

问题描述 投票:0回答:1

我的mailers.json文件:

[
 {
"key": "ExampleOrg",
"type": "ses",
"options": {
  "endpoint": "email-smtp.us-east-1.amazonaws.com",
  "access-key": "....................",
    "secret-key": ".............................."
}
 }
]

然后cd到Phabricator安装

./bin/config set --stdin cluster.mailers < mailers.json

我重新启动了apache2,但仍有所有电子邮件在Queue中待处理。

php phabricator
1个回答
0
投票

尝试使用发送测试电子邮件

bin/mail send-test --to alincoln --subject hi < body.txt

它将显示错误,如果有任何,在我的情况下,它是php-xml安装它解决了问题

sudo apt install php-xml
© www.soinside.com 2019 - 2024. All rights reserved.