Postal

Create email using ASP.NET MVC views

Email headers

Email addresses with names

To include the name in an email address use the following format:

To: John Smith <john@example.org>

Multiple values

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