summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example/Program.cs
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2015-11-12 13:37:31 -0800
committerElmer Thomas <elmer@thinkingserious.com>2015-11-12 13:37:31 -0800
commit9917fa495dc717d8db67676895179eee239d2f41 (patch)
treeee5d5df190818745c52f7ece864ef320b89d9fd1 /SendGrid/Example/Program.cs
parentc54d9f16f01ca3ea3c4e81e004a351dd5c1fc10a (diff)
downloadsendgrid-csharp-9917fa495dc717d8db67676895179eee239d2f41.zip
sendgrid-csharp-9917fa495dc717d8db67676895179eee239d2f41.tar.gz
sendgrid-csharp-9917fa495dc717d8db67676895179eee239d2f41.tar.bz2
Use generic test values
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();