mime-mail-ses

Send mime-mail messages via Amazon SES

http://github.com/snoyberg/mime-mail

Version on this page:0.4.2
LTS Haskell 22.14:0.4.3
Stackage Nightly 2024-03-28:0.4.3
Latest on Hackage:0.4.3

See all snapshots mime-mail-ses appears in

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

Module documentation for 0.4.2

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

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