我有一个安装了nullmailer的 Ubuntu 服务器,用于将发送电子邮件中继到实际的 SMTP 服务器。当我在 CLI 中执行以下命令时,一切都按预期工作。
echo "Test message" | mail -r "test@example.com" -s "This is just a test with nullmailer" "fakemail@example.com"
我的问题是:我如何mail
与 Symfony Mailer 一起使用?我只看到 SendGrid 和其他提供商的适配器。有人有什么主意吗?
谢谢!
慕田峪9158850