Anyone know of an example of using Amazon SES with Delphi, or failing that, some tips to get me started?

Thanks

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You only need a Delphi TCP/IP library like Indy or Synapse, and send HTTP requests as shown in the Amazon SES documentation:

https://email.us-east-1.amazonaws.com
?Action=SendEmail
&Source=user%40example.com
&Destination.ToAddresses.member.1=allan%40example.com
&Message.Subject.Data=This%20is%20the%20subject%20line.
&Message.Body.Text.Data=Hello.%20I%20hope%20you%20are%20having%20a%20good%20day.
link|improve this answer
Thanks mjn, I'll look into doing it that way... – Xaz Jul 14 '11 at 1:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.