FluentEmail
FluentEmail copied to clipboard
cc multiple addresses
To(string emailAddress) supports multiple addresses (allows multiple splitting on ';').
CC should support this too (same for BCC).
@KevinRecuerda you can still add it already . but using ; this is not supported
var emails = new List<Address>();
emails.Add(new Address("[email protected]"));
emails.Add(new Address("[email protected]"));
var email = Email
.From(fromEmail)
.CC(emails);