summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example/Program.cs
blob: 583f30467dde02f6fb6314189079476816ddb450 (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
40
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 = "sgrid_username";
            var password = "sgrid_password";
            var from = "bar@domain.com";
            var to = new List<String>
                         {
                             "foo@domain.com",
                             "raz@domain.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();
        }

    }
}