monde-sistemas / delphi-aws-ses

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

Add FromName parameter and fix encoding of Source to support special chars #18

Closed fabioxgn closed 9 years ago

fabioxgn commented 9 years ago

Special chars like [] were being removed as the Source name and address was not being encoded properly. Now it specify the utf-8 encoding and encodes the source name using base64 ("B" encoding).

Base64 was used to avoid implementing the "Q" encoding as defined in RFC-2047.

martinusso commented 9 years ago

:+1: