MIT licensed by Michael Snoyman
Maintained by [email protected]
This version can be pinned in stack with:mime-mail-ses-0.4.3@sha256:eae01b3e80467ec280a4fb040d2618e371b96b14d58fff324ba35d337f5ec0f8,2271

Module documentation for 0.4.3

mime-mail-ses

Send mime-mail messages via Amazon SES

send-aws

The build target mime-mail-ses:exe:send-aws is a command line executable that allows you to send an e-mail via Amazon SES. Most parameters are supplied through command line options; the AWS secret key and the body of the message are read from standard input.

Example:

% cabal run :send-aws -- \
    --subject 'Checking if AWS works.' \
    --from 'your e-mail address' \
    --to 'your e-mail address' \
    --key 'your key ID' \
    --region 'us-east-2'
Up to date
Enter AWS secret: your secret key
Enter message below.
This is a test letter sent from command line.

Changes

0.4.3

  • Add function ‘sendMailSESWithResponse’.

0.4.2

  • Add executable send-aws for sending e-mails via Amazon SES from command line.
  • Update Signature Version for Amazon SES from 3 to 4.

0.4.1

  • Add ‘renderSendMailSESGlobal’ and ‘sendMailSESGlobal’ function which uses the global manager.

0.4.0.0

  • Support IAM temp credentials. This is a backwards-incompatible change that adds a field to the SES type to represent (optional) session tokens when using roles attached to EC2 instances.
  • Make fields in the SES data type strict to promote warnings to errors.

0.3.2.3

http-client 0.5 support

0.3.2.2

time 1.5 support

0.3.2

Expose SESException datatype and constructor.