Amazon SES (Simple Email Service) is an online email-sending service offered by Amazon Web Services. Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Amazon SES eliminates the complexity and ...
6
votes
2answers
820 views
Send Email From Amazon SES in ASP.NET MVC App
I host my web app which is written in .net mvc2 on amazon ec2. currrently use gmail smtp to send email. beacuse of google for startup email quota cant send more than 500 email a day. So decide to move ...
5
votes
1answer
387 views
Post problems with Indy TIdHTTP
I am having issues posting to Amazon's SES Service using Indy's TIdHTTP.
Here is an example of the code i am using:
procedure TMainFrm.btnAmazonSESClick(Sender: TObject);
var
SSLHandler: ...
4
votes
3answers
388 views
Amazon SES SMTP with Django
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 ...
4
votes
2answers
1k views
How do you get Amazon SES working on Debian Squeeze?
All the Perl dependencies for it are met but I'm getting this error:
Can't locate object method "ssl_opts" via package "LWP::UserAgent" at SES.pm line 250.
4
votes
4answers
2k views
Amazon SES (Simple Email Service) for bulk e-mail, NOT for transactional e-mails?
The Amazon SES (Simple Email Service) self-described as a "highly scalable and cost-effective bulk and transactional email-sending service".
From everything that I can gather, and by perusing the AWS ...
4
votes
2answers
671 views
Node.js Modules for Amazon SES
Are there any Node.js modules for Amazon Simple Email Service?
Amazon Simple Email Service (Amazon
SES) is a highly scalable and
cost-effective bulk and transactional
email-sending service ...
3
votes
2answers
351 views
Send Attachments with Amazon-SES in C#
I'm searching for an working C# example to send attachments with Amazon-SES.
After reading that Amazon-SES now supports sending attachments I was searching for an C# example but was unable to find ...
3
votes
2answers
708 views
Amazon SimpleEmail: how to check if an Email has been delivered?
I tried to send emails with Amazon SES, with the Java AWS SDK, and it worked. I would like to be able to check (at a later time) whether the delivery was successful. I will define it successful if the ...
2
votes
1answer
121 views
How to configure GlassFish JavaMail to use Amazon SES?
I have not found any clear documentation on configuring GlassFish's JavaMail to use Amazon SES to send out email messages. Could someone please provide an example?
2
votes
1answer
168 views
JavaMail to send email out which server?
Here is my issue, I'm creating a website with a little login and resetting password. It's basic stuff, when user forget the password they can click the link and my application will send an email with ...
2
votes
3answers
2k views
Cannot send email with Amazon SES
I'm using the AWS PHP SDK. I have the following code to send an email using SES:
$ses = new AmazonSES(...);
$response = $ses->send_email('ubuntu@localhost',
array('ToAddresses' ...
2
votes
2answers
611 views
AWS SES for bulk mail : Require email verification?
We're thinking of moving to Amazon's SES for sending bulk mail. It appears that we have a unique API call for each email we want to send. So if there are 20k emails to send, we make 20k API calls. ...
1
vote
1answer
44 views
How to Setup Wordpress with Amazon SES using Mail Queue Throttling?
I am trying to upgrade a Wordpress blog to use Amazon SES (Simple Email Service) with the Subscribe2 email notification plugin (see links below). Currently I have the email working with the SES ...
1
vote
1answer
69 views
Can I use Amazon's SES with Symfony2 and the Swiftmailer Bundle?
I'm hosting a site on Amazon's ec2 running a 64-bit version of CentOS. The site has a simple Contact Us form that needs to send an email to several addresses when submitted (pretty basic). Has anyone ...
1
vote
1answer
72 views
Cannot send email with amazon ses
I am developing an Codeigniter based website and I need to send emails to people when they
are signup up. My server is hosted at Amazon EC2.
I am trying to use their Amazon Simple Email Service and I ...
1
vote
4answers
475 views
Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465, response: -1
I am trying to send email with Amazon's SES/SMTP and I am getting the following error:
javax.mail.MessagingException: Could not connect to SMTP host: email-smtp.us-east-1.amazonaws.com, port: 465, ...
1
vote
2answers
135 views
Mysterious issue with Django + uWSGI + send email
I'm here to write you after about 1.5 hour of hard debugging.
First of all, these are the interested files:
/project/app/utils.py
from django.core.mail import EmailMultiAlternatives
import ...
1
vote
1answer
447 views
Codeigniter SMTP Email with Amazon SES
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:
...
1
vote
0answers
131 views
Looking for an Amazon SES example sending a raw mail including attachment
The Amazon SES documentation is not clear for me. So if you can help me with an example tot send raw text e-mails including a PDF attachment, this will help me a lot. I use Python 2.5 and Google App ...
1
vote
0answers
150 views
Amazon SES Inline Attachment in .NET
We have been successfully sending emails through Amazon SES raw email format for a few months, and we have attachments working great. However, we recently attempted adding an inline attachment (a ...
1
vote
1answer
342 views
How would one implement amazon ses SendRawEmail with attachments in php?
I have started to use Amazon SES service for sending all my project e-mails.
Currently i have converted all my code to use it. But still lacking on examples for implementing e-mails with attachment as ...
1
vote
1answer
186 views
Amazon SES example for Delphi
Anyone know of an example of using Amazon SES with Delphi, or failing that, some tips to get me started?
Thanks
1
vote
1answer
143 views
How do I add “from” in an email message using Amazon SES in PHP?
How do I add "from" in an email message using Amazon SES in PHP?
I can't find it in their SDK:
* Keys for the $destination parameter:
* ToAddresses - _string_|_array_ (Optional) The To: field(s) ...
1
vote
2answers
2k views
AWS SES certificate verify failed
I have set up SES successfully on one AWS instance. Now I am trying to use it on a second (not cloned) instance and when I run any of the SES scripts, I get an error:
ses-get-stats.pl -k ...
1
vote
2answers
684 views
Which is the best amazon SES (email) gem to use for rails 3?
I understand this question is subjective but I want to get a feel for peoples opinions.
For my needs, I want to send out lots of emails to lots of different mailing lists.
Currently, I am trying to ...
1
vote
1answer
789 views
Python API for Amazon Simple Email Service
I've made the API for Amazon SES: http://tagmask.com/vladimir/posts/26
It is my first experience in creating an API for such serious service.
I want to make it useful for people, so my main question ...
0
votes
2answers
67 views
Amazon SES SMTP Python Usage
I am trying to diagnose why sending email through Amazon SES is not working via python.
The following example demonstrates the problem, where user and pass are set to the appropriate credentials.
...
0
votes
2answers
60 views
Swiftmailer sends pre-constructed email messages to multiple receipients too slowly
I have created a Job Queue module that processes jobs and constructs "social-network" type emails.
2 processors consists of:
Building the custom emails (Views) e.g. User A and User B have ...
0
votes
2answers
176 views
How to configure Spring JavaMailSender for SES using SMTP?
We are trying to configure Spring JavaMailSender to work with Amazon's SES service using SMTP, but we are getting this error:
javax.mail.MessagingException: Could not connect to SMTP host: ...
0
votes
1answer
81 views
Rails: Amazon aws-ses, missing required header 'From'
Email from Ruby code is sending without any issue. But when I try to send it from Rails console, it gives the Missing required header 'From' error even From is specified in the email (Notifier), see ...
0
votes
1answer
131 views
Send a PDF attachment with email using Amazon SES in Python/Django
I have my code for creating a PDF of a web page which can be downloaded by the user.
I want to send this PDF as attachment via mail using Amazon SES.
Thanks in advance!
0
votes
2answers
174 views
AWS SES send_email() will not work for me, always “unexpected list element termination”
Sounds like it should be strait forward to fix but I can't get it to work.
I've read the API reference for send_email
I've read the other threads related to it, here and on other sites. I've used ...
0
votes
0answers
60 views
Sending Email using Amazon SES service under Amazon VPC
I have 2 instance under VPC. In that one instance has internet access and another has not. I want to use Amazon SES(Simple Email Service) in interntless instance. I have tried to send mail but it ...
0
votes
2answers
129 views
Use PHP to parse XML
Here's an example of my xml data
<GetSendStatisticsResponse xmlns="http://ses.amazonaws.com/doc/2010-12-01/">
<GetSendStatisticsResult>
<SendDataPoints>
<member>
...
0
votes
2answers
121 views
Looping HTTP post starts to fail for Amazon SES
I originally posted this at the Amazon SES forums here: https://forums.aws.amazon.com/thread.jspa?threadID=74561&tstart=0
But since the stackoverflow community is more active, I'll post it here ...
0
votes
1answer
141 views
Queue when using Amazon SES?
i implement a small bulk-mail sending tool in rails based on the Amazon SES service and action mailer. i read that amazon queues my sent messages before sending them out itself.
so my question: does ...
0
votes
1answer
53 views
How to determine when a user's email has been verified by Amazon SES?
How can I determine if a user has clicked on the link in the verification email sent by Amazon SES? Looking at the docs, I only see a function to list every verified address. That seems fairly ...
0
votes
1answer
283 views
Sending email via Amazon SES from php command line
I've been using a php wrapper from http://www.orderingdisorder.com/aws/ses/ to send emails via Amazon SES successfully for several months. I now need to automate some emails from batch jobs and have ...
0
votes
2answers
343 views
SES: How to set the return-path when using Raw mode?
How can I set the return-path when sending e-mails in raw mode?
An example would be great.
Regards,
Donald
0
votes
2answers
189 views
Amazon SES sending duplicate emails
I have switched to using Amazon SES to send our transactional alerts from our asp.net system and I'm getting calls that people are receiving duplicate emails.
I have confirmed that our program is ...
0
votes
2answers
181 views
Ruby/node.js + Amazon SES: Is there an Amazon SES API?
I have seen several gems that make use of Amazon SES. However, I can't find any API provided by Amazon to build a service without that gem.
How can I do what the gem does, without using the gem? That ...
0
votes
3answers
465 views
Simple web service using Amazon SES
I would like to use AWS and especially Amazon Simple Email Service (SES) in order to setup a webservice allowing to send emails.
Emails would be triggered by some kind of POST request to the ...
0
votes
1answer
290 views
What's the best software for implementing Amazon SES
I'm looking for a downloadable autoresponder email marketing software that will let me send emails using Amazon's SES Email service. I'm looking for something quick and easy to install. Anyone know ...
0
votes
1answer
253 views
Amazon Simple Email Service - “From” email verification
I am signed up for AWS SES (with instance, S3 and my website running nicely). I also have rec'd approval for sending out email without receiver verification and "mass production" OK. The only thing ...
-1
votes
1answer
62 views
Is it possible to use Amazon Simple mail system (Amazon SES) in my own application on a GoDaddy hosting plan? [closed]
In one of my web application in PHP I likes to integrate Amazon Mail system . When user completed the registration process I wanna send a mail and also weekly news letters and all ... Is it possible ...
-1
votes
2answers
143 views
How to set the credentials to send an email with AmazonSES using the PHP SDK from aws
I am trying to use the latest SDK for PHP (v. 1.5.0). I am trying to send an email with AmazonSES. I have successully sent emails with the python scripts, so I know that my crendentials and other ...