humanmade / aws-ses-wp-mail

An AWS SES wp_mail() drop-in
184 stars 51 forks source link

Support Reply To, CC and BCC #30

Closed rmccue closed 7 years ago

rmccue commented 7 years ago

Adds support for Reply-To, CC, and BCC headers. In addition, fixes up the normalisation of the headers: ucwords only changes the first character, so ucwords('xyz') -> Xyz but ucwords('xyZ') -> XyZ. By lowercasing first, this ensures consistency.

Also adds support for all of these to the test command.

Fixes #7.

joehoyle commented 7 years ago

Nice one!