monde-sistemas / delphi-aws-ses

Delphi client for Amazon Simple Email Service (AWS SES)
MIT License
33 stars 9 forks source link

Adds Reply-To support and converts Recipients from TStrings to TArray<string> - Fixes #16 #17

Closed fabioxgn closed 9 years ago

fabioxgn commented 9 years ago

TStrings must me managed and adds unnecessary complexity to the library use, now you can use it like:

SendMail(['recipient@example.com']...);

And if you have a TStrings you can use StringList.ToStringArray.

martinusso commented 9 years ago

:+1: