Reputation: 3546
Why is Amazon Simple Emailing Service Smtp mails 10 times slower than raw mails ?
The only difference is the raw mails are sent with the methods provided with the AWS SDK. The SMTP emails were sent using the the built in C# code to send emails (System.Net.Mail.SmtpClient) which then points to the aws smtp end point.
This happens in a background service but the smtp is 10 times slower. Currently sending at a rate of something like 1 per second while our current quota should be 14 per second.
Upvotes: 1
Views: 900
Reputation: 10913
Could you Check TCP/IP Round Trip Time between your server and "the aws smtp end point"?
Use ping
or traceroute
to measure it
Sending email over SMTP without pipelining requires at least
MAIL FROM:
+RCPT TO
+DATA
).Possible fixes:
ehlo
replyUpvotes: 1