FluentEmail icon indicating copy to clipboard operation
FluentEmail copied to clipboard

cc multiple addresses

Open KevinRecuerda opened this issue 6 years ago • 1 comments

To(string emailAddress) supports multiple addresses (allows multiple splitting on ';').

CC should support this too (same for BCC).

KevinRecuerda avatar Oct 15 '19 07:10 KevinRecuerda

@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);

gethari avatar Oct 31 '19 06:10 gethari