summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example/Program.cs
diff options
context:
space:
mode:
authorShawn A. Luce <shawn@saluce.com>2014-05-16 12:50:07 -0500
committerShawn A. Luce <shawn@saluce.com>2014-05-16 12:50:07 -0500
commit3cf289409ab39918f7e40487f3d2696f67ca6031 (patch)
treeef86a0ea4246219ec900929a87b242436c814306 /SendGrid/Example/Program.cs
parentf6a3e659081c641b45f94978fd59df5244d5c4d3 (diff)
downloadsendgrid-csharp-3cf289409ab39918f7e40487f3d2696f67ca6031.zip
sendgrid-csharp-3cf289409ab39918f7e40487f3d2696f67ca6031.tar.gz
sendgrid-csharp-3cf289409ab39918f7e40487f3d2696f67ca6031.tar.bz2
Moved MailBuilder to new project
Diffstat (limited to 'SendGrid/Example/Program.cs')
-rw-r--r--SendGrid/Example/Program.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs
index 9a088ac..7fb0960 100644
--- a/SendGrid/Example/Program.cs
+++ b/SendGrid/Example/Program.cs
@@ -30,16 +30,5 @@ namespace Example
Console.WriteLine("Done!");
Console.ReadLine();
}
-
- private static SendGrid UseMailBuilder()
- {
- // Fluently create the mail builder, add the properties, then build the email object
- return MailBuilder.Create()
- .To("anna@example.com")
- .From("john@example.com", "John Smith")
- .Subject("Testing the SendGrid Library")
- .Text("Hello World!")
- .Build();
- }
}
} \ No newline at end of file