amazon-ses

Codeigniter SMTP Email with Amazon SES

帅比萌擦擦* 提交于 2019-12-03 04:58:42
I think yesterday Amazon announced SMTP support for SES (Simple Email Service). I tried to send SMTP email with Codeigniter with no luck. I have a verified sender and everything looks good: $this->load->library('email'); $config = array( 'protocol' => 'smtp', 'smtp_host' => 'email-smtp.us-east-1.amazonaws.com', 'smtp_user' => 'SMTP USERNAME', 'smtp_pass' => 'SMTP PASSWORD', 'smtp_port' => 465, 'mailtype' => 'html' ); $this->email->initialize($config); $this->email->print_debugger(); $this->email->from('verified_email_address@something.com', 'Test From'); $this->email->to('email@example.com',

How to properly set up DNS SPF records?

僤鯓⒐⒋嵵緔 提交于 2019-12-03 04:50:02
问题 I'm sending weekly emails to subscribers and it turns out that messages are frequently going to the spam folder for users. I'm utilizing Amazon SES to send these messages and have added an SPF record according to their instructions: http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/SPFSenderIDDKIM.html?r=3917 In querying the SPF records for my domain I get the following back from http://www.kitterman.com/spf/validate.html: SPF record lookup and validation for: mydomain.tld SPF

Amazon SES mails as spams [closed]

寵の児 提交于 2019-12-03 03:09:56
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I am using amazon SES for sending notification mails. Mails are getting delivered but sometimes mails are moved to spam folder. How is it so? If my method of sending mails is same then why some mails are considered as spam and others not? Please explain. Thanks in advance 回答1:

Amazon SES SMTP with Django

时光毁灭记忆、已成空白 提交于 2019-12-03 02:44:47
问题 I'm trying to use Amazon's new SMTP service for SES with Django 1.3.1 but I'm not having much luck. I've created my SES SMTP credentials and have this in my settings: EMAIL_USE_TLS = True EMAIL_HOST = 'email-smtp.us-east-1.amazonaws.com' EMAIL_HOST_USER = 'my-smtp-user' EMAIL_HOST_PASSWORD = 'my-smtp-password' EMAIL_PORT = 465 Then I try sending a test email (from and to verified email addresses): from django.core.mail import send_mail send_mail('Test subject', 'This is the body', 'info@abc

Using PHPMailer and Amazon SES

孤者浪人 提交于 2019-12-03 01:11:38
I am using Amazon SES . I am trying to send an email from my PHP script using PHPMailer . I already verified two email ids and trying to send mail from and to this mail ids. But It throws the following error. ERROR SERVER -> CLIENT: 220 email-smtp.amazonaws.com ESMTP SimpleEmailService-693939519 QEPGeLndQQq5vJ53VMXU CLIENT -> SERVER: EHLO localhost SERVER -> CLIENT: 250-email-smtp.amazonaws.com250-8BITMIME250-SIZE 10485760250- STARTTLS250-AUTH PLAIN LOGIN250 Ok CLIENT -> SERVER: STARTTLS SERVER -> CLIENT: 220 Ready to start TLS CLIENT -> SERVER: EHLO localhost SERVER -> CLIENT: 250-email-smtp

What is the correct SPF record for using both Amazon SES and Google Apps

浪子不回头ぞ 提交于 2019-12-02 23:08:21
What would be the correct SPF record to use for both Amazon SES and Google Apps together: Google Apps says they want you to have the tilde "~" in it: http://support.google.com/a/bin/answer.py?hl=en&answer=178723 , but most other examples have a dash "-" instead. Amazon wants: "v=spf1 include:amazonses.com -all" Google wants: "v=spf1 include:_spf.google.com ~all" We currently have this, combining both together: TXT "v=spf1 include:amazonses.com include:_spf.google.com ~all" SPF "v=spf1 include:amazonses.com include:_spf.google.com ~all" 1) Is this the correct SPF record? 2) Are we missing

How to properly set up DNS SPF records?

余生长醉 提交于 2019-12-02 19:09:45
I'm sending weekly emails to subscribers and it turns out that messages are frequently going to the spam folder for users. I'm utilizing Amazon SES to send these messages and have added an SPF record according to their instructions: http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/SPFSenderIDDKIM.html?r=3917 In querying the SPF records for my domain I get the following back from http://www.kitterman.com/spf/validate.html : SPF record lookup and validation for: mydomain.tld SPF records are primarily published in DNS as TXT records. The TXT records found for your domain are: SPF

AWS SES Error: x509: certificate signed by unknown authority

泪湿孤枕 提交于 2019-12-02 18:04:43
问题 I've been banging my head against the table with this one for a while now. I'm. I've successfully sent emails locally using an AWS access key and secret that has full access. Once I deploy to my staging environment I get an error using the same access key and secret. RequestError: send request failed\ncaused by: Post https://email.us-east-1.amazonaws.com/: x509: certificate signed by unknown authority Please help! 回答1: If you are using alpine docker image for example: FROM alpine:3.6 as

Amazon SES mails as spams [closed]

前提是你 提交于 2019-12-02 16:40:13
I am using amazon SES for sending notification mails. Mails are getting delivered but sometimes mails are moved to spam folder. How is it so? If my method of sending mails is same then why some mails are considered as spam and others not? Please explain. Thanks in advance Great question. Email deliverability (the likelihood that messages will be delivered to the inbox) depends on many different factors. It is a joint responsibility both of the platform you're using (in this case, you mention Amazon SES) and your particular sending program. Depending on whom you're sending to and what sort of

Amazon SES SMTP with Django

て烟熏妆下的殇ゞ 提交于 2019-12-02 16:38:28
I'm trying to use Amazon's new SMTP service for SES with Django 1.3.1 but I'm not having much luck. I've created my SES SMTP credentials and have this in my settings: EMAIL_USE_TLS = True EMAIL_HOST = 'email-smtp.us-east-1.amazonaws.com' EMAIL_HOST_USER = 'my-smtp-user' EMAIL_HOST_PASSWORD = 'my-smtp-password' EMAIL_PORT = 465 Then I try sending a test email (from and to verified email addresses): from django.core.mail import send_mail send_mail('Test subject', 'This is the body', 'info@abc.com',['hello@abc.com'], fail_silently=False) But I get the following error: SMTPServerDisconnected: