diff options
author | Wataru Sato <awwa500@gmail.com> | 2015-01-28 18:31:14 +0900 |
---|---|---|
committer | Wataru Sato <awwa500@gmail.com> | 2015-01-28 18:31:14 +0900 |
commit | 35a76e291ee4cfbbe63a21a4b3819537eb0781fc (patch) | |
tree | 9a9bd83e9b5b2522350c98a2b1ed01059f6d7717 /SendGrid/SendGridMail/SendGrid.cs | |
parent | c14afcfbcf4aa04132a3742528b17f461272fa7c (diff) | |
download | sendgrid-csharp-35a76e291ee4cfbbe63a21a4b3819537eb0781fc.zip sendgrid-csharp-35a76e291ee4cfbbe63a21a4b3819537eb0781fc.tar.gz sendgrid-csharp-35a76e291ee4cfbbe63a21a4b3819537eb0781fc.tar.bz2 |
AddSection
Diffstat (limited to 'SendGrid/SendGridMail/SendGrid.cs')
-rw-r--r-- | SendGrid/SendGridMail/SendGrid.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index ef8f8df..6a3dceb 100644 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -221,10 +221,11 @@ namespace SendGrid //let the system complain if they do something bad, since the function returns null
Header.AddSubstitution(replacementTag, substitutionValues);
}
- public void AddSection(String relacementTag, String sectionValue)
- {
- Header.AddSection(relacementTag, sectionValue);
- }
+
+ public void AddSection(String relacementTag, String sectionValue)
+ {
+ Header.AddSection(relacementTag, sectionValue);
+ }
public void AddUniqueArgs(IDictionary<String, String> identifiers)
{
|