diff options
Diffstat (limited to 'SendGrid/Example/Program.cs')
-rw-r--r-- | SendGrid/Example/Program.cs | 11 |
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 |