diff options
Diffstat (limited to 'SendGrid/SendGridMail/IHeader.cs')
-rwxr-xr-x | SendGrid/SendGridMail/IHeader.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/IHeader.cs b/SendGrid/SendGridMail/IHeader.cs index b5b9c3f..3ec7911 100755 --- a/SendGrid/SendGridMail/IHeader.cs +++ b/SendGrid/SendGridMail/IHeader.cs @@ -11,6 +11,11 @@ namespace SendGridMail /// </summary>
public interface IHeader
{
+ /// <summary>
+ /// Gets the array of recipient addresses from the X-SMTPAPI header
+ /// </summary>
+ IEnumerable<string> To { get; }
+
/// <summary>
/// This adds a substitution value to be used during the mail merge. Substitutions
/// will happen in order added, so calls to this should match calls to addTo in the mail message.
|