string
LoginEmail
= "spread@reasonables.com";
string
LoginPassword
= "spread";
//Define the from
infomation
string
From
= "myedm@edm.com";
string
FromName
= "Reasonable";
//Define
recipient email
string
To
= "noclone@reasonables.com";
//Define
the email subject and body
string
Subject
= "NoClone
4 is released!";
string
Body
= "Download
NoClone 4 at http://noclone.net now!";
//Create a SpreadWebService
object and use its method.
SpreadWebService MySpread = new
SpreadWebService();
string result = MySpread.send(LoginEmail,LoginPassword,From,FromName,To,Subject,Body);