amazon-ses

Running AWS SES Lambda function locally with Docker

Running AWS SES Lambda function locally with Docker Question: I’m a newbie to docker and lambda functions and I’m trying to run a simple lambda function locally (sample code below) to send emails using the AWS Simple Email Service. I’ve got limited access to an AWS Sandbox account which means I don’t have AWS Access …

Total answers: 1

Amazon SES failure with smtp retcode 250

Amazon SES failure with smtp retcode 250 Question: I try to send email with amazon SES API docs below, and python return the code 250 meaing OK but my email got a failure message. Could anyone kindly tell me what maybe the problem? thank you python: import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import …

Total answers: 1

Amazon SES SMTP with Django

Amazon SES SMTP with Django Question: 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 …

Total answers: 8