MIT licensed by Michael Snoyman
Maintained by Janus Troelsen
This version can be pinned in stack with:mime-mail-ses-0.4.5@sha256:72c7ded8f227f88abbe47ac2a181d153bf263056e5d7beb5a65b270812d6fb17,2360

Module documentation for 0.4.5

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.5

  • Bump lower dependency bounds
  • Remove CPP
  • Use ram instead of memory as a dependency. memory is abandoned.

0.4.4

  • Use crypton instead of cryptohash as a dependency. cryptohash is abandoned.
  • Avoid deprecated conduit functions.
  • New maintainer: Janus Troelsen

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.