Create email using ASP.NET MVC views
To include the name in an email address use the following format:
To: John Smith <john@example.org>
Some headers can have multiple values e.g. Bcc and CC.
You can specify these in an Email view in two ways:
Comma separate:
Bcc: john@smith.com, harry@green.com Subject: Example etc
Or, repeat the header:
Bcc: john@smith.com Bcc: harry@green.com Subject: Example etc