diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2015-11-12 13:37:31 -0800 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2015-11-12 13:37:31 -0800 |
commit | 9917fa495dc717d8db67676895179eee239d2f41 (patch) | |
tree | ee5d5df190818745c52f7ece864ef320b89d9fd1 /SendGrid/Example/Program.cs | |
parent | c54d9f16f01ca3ea3c4e81e004a351dd5c1fc10a (diff) | |
download | sendgrid-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.cs | 6 |
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();
|