pastjean / postmark-rs

Postmark client for rust
https://docs.rs/postmark
Apache License 2.0
10 stars 9 forks source link

SendEmailRequest: Support supplying both TextBody and HtmlBody #5

Closed VojtaStanek closed 1 year ago

VojtaStanek commented 1 year ago

Currently SendEmailRequest::body setter supports setting either HTML body or text body, but not both for a single email. Setting both is supported by Postmark API - see example here.

pastjean commented 1 year ago

Here you go, that's now available in 0.7

VojtaStanek commented 1 year ago

Thanks a lot, that was fast!