blob: 41bbf768334cd784694849aa76266195cdb041fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Mail;
using System.Text;
using SendGridMail;
using SendGridMail.Transport;
namespace Example
{
class Program
{
// this code is used for the SMTPAPI examples
static void Main(string[] args)
{
var username = "brandonmwest";
var password = "bray!8282";
var from = "brawest@gmail.com";
var to = new List<String>
{
"brawest@gmail.com"
};
//initialize the SMTPAPI example class
//var smtpapi = new SMTPAPI(username, password, from, to);
var restapi = new WEBAPI(username, password, from, to);
//use this section to test out our Web and SMTP examples!
//smtpapi.SimpleHTMLEmail();
restapi.SimpleHTMLEmail();
Console.WriteLine("Done!");
Console.ReadLine();
}
}
}
|