简体   繁体   English

如何从许多地址发送交易邮件(无垃圾邮件或代表垃圾邮件)

[英]How to send transactional mails from many addresses (without spamming or on behalf of)

In a Laravel/Symfony SaaS app I want my clients to send out mails to their customers – my clients can manage their customer information in my app. 我希望在Laravel / Symfony SaaS应用程序中,我的客户向他们的客户发送邮件-我的客户可以在我的应用程序中管理他们的客户信息。

I am looking for a way they can send emails that are from their own addresses – and not from my domain (via sendmail ). 我正在寻找一种方法,使他们可以发送来自自己地址的电子邮件,而不是来自我的域的电子邮件(通过sendmail )。

These mails should not have a on behalf of in their FROM , but also I want to make sure that my service will not get gamed by spammers. 这些邮件的FROM不应有on behalf of ,但我也想确保垃圾邮件发送者不会滥用我的服务。

One idea was that every client can set up her own SMTP settings which Swiftmailer will then use to deliver the mails for each individual address. 一个想法是,每个客户端都可以设置自己的SMTP设置,然后Swiftmailer将使用该设置为每个地址发送邮件。 Maximum daily delivery per client should by below 500, so that might work. 每个客户的每日最大投放量应低于500,这样才能奏效。

Another idea was to use a service such as Amazon SES, who let you verify up to 1000 addresses . 另一个想法是使用Amazon SES之类的服务,该服务可让您验证多达1000个地址 Or Sendgrid, who offer something similar . 或提供类似功能的 Sendgrid。

What is the most secure way to send mails from different addresses with a maximized deliverability and minimum risk of being gamed by spammers? 以最大的可传递性和最小的垃圾邮件发送者风险发送来自不同地址的邮件的最安全方法是什么?

For safe guarding against being marked as spam you need to 为了安全防范被标记为垃圾邮件,您需要

  1. Have your DKIM and SPF settings in place 设置好DKIM和SPF设置
  2. Do a LITMUS spam test of your email to check your spam score against various spam check engines 对您的电子邮件进行LITMUS垃圾邮件测试 ,以对照各种垃圾邮件检查引擎检查垃圾邮件分数
  3. Do domain throttling 进行域限制

It has nothing to do with email verification in SES because that is just a mandate for using a From email id while sending out emails 它与SES中的电子邮件验证无关,因为这只是在发送电子邮件时使用发件人ID的要求

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何从Magento发送邮件? - How to send mails from Magento? 根据用户要求发送具有不同地址的邮件 - send mails with different addresses according to the user request 如何从QTP发送自动邮件(不是摘要!) - How to send automatic mails from QTP (not summary !!) 如何代表来自不同域的其他人发送 email - How to send an email on behalf of someone else from a different domain 如何从 python 发送电子邮件而不必启用安全性较低的应用程序? - How can I send e-mails from python without having to enable less secure apps? 如何使用提交后的githooks将电子邮件发送到问题/问题注释中指定的地址? - How to send e-mails to addresses specified in issue/issue comments with post-commit githooks? 在没有cron的情况下在后台发送邮件 - Send mails in background without cron Laravel Mail :: send()使用to和cc地址发送多封邮件 - Laravel Mail::send() Send Multiple mails with to and cc addresses 如何配置exim以在没有DNS的情况下将邮件发送到LAN - How to configure exim to send mails to LAN without DNS 如何在没有 SMTP 的情况下通过 dataproc 集群发送带附件的邮件? - How to send mails with attachment through dataproc cluster without SMTP?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM