summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/Example/Program.cs')
-rw-r--r--SendGrid/Example/Program.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs
index a9b5c8f..9241f61 100644
--- a/SendGrid/Example/Program.cs
+++ b/SendGrid/Example/Program.cs
@@ -12,9 +12,9 @@ namespace Example
private static void Main()
{
// Test sending email
- string to = "elmer.thomas@sendgrid.com";
- string from = "dx@sendgrid.com";
- string fromName = "Elmer Thomas";
+ string to = "example@example.com";
+ string from = "example@example.com";
+ string fromName = "Jane Doe";
SendEmail(to, from, fromName);
// Test viewing, creating, modifying and deleting API keys through our v3 Web API
ApiKeys();