diff options
author | Brandon West <brawest@gmail.com> | 2015-04-21 17:05:25 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2015-04-21 17:05:25 -0600 |
commit | cd5b5a8733bc2c82b4205757766a21da2f0551c5 (patch) | |
tree | e4a6329edf13c1d44c3e0bfaf2b5796cb2a51d96 /SendGrid/SendGridMail/SendGrid.cs | |
parent | f0b713340211c2f5f7bc3b7e0e48559a88cb9212 (diff) | |
parent | f251c6fbd178d21fef5a4c14465647abd53e7f57 (diff) | |
download | sendgrid-csharp-cd5b5a8733bc2c82b4205757766a21da2f0551c5.zip sendgrid-csharp-cd5b5a8733bc2c82b4205757766a21da2f0551c5.tar.gz sendgrid-csharp-cd5b5a8733bc2c82b4205757766a21da2f0551c5.tar.bz2 |
merge
Diffstat (limited to 'SendGrid/SendGridMail/SendGrid.cs')
-rw-r--r-- | SendGrid/SendGridMail/SendGrid.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index 1e63005..e4e0d22 100644 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -234,6 +234,11 @@ namespace SendGrid Header.AddSubstitution(replacementTag, substitutionValues);
}
+ public void AddSection(String relacementTag, String sectionValue)
+ {
+ Header.AddSection(relacementTag, sectionValue);
+ }
+
public void AddUniqueArgs(IDictionary<String, String> identifiers)
{
Header.AddUniqueArgs(identifiers);
|