Search This Blog

Wednesday, July 20, 2011

AWS SES HTML Messages

This post will try to show you make Amazon Simple Email Service (SES) [http://aws.amazon.com/developertools/Amazon-SES/8945574369528337] to send HTML Mail rather than text mails.

This post consider that you are already able to send text mails using that tool. if not check Amazon SES tutorial online and README in the tool's zip.

To allow HTML Messaging:


Change Line 121 in ses-send-mail.pl

from
$params{'Message.Body.Text.Data'}                          = $opts{'m'};
To:
$params{'Message.Body.Html.Data'}                          = $opts{'m'};

Hope This helps