string
loginName
= "spread@reasonables.com";
string
loginPassword
= "spread";
string
campaignName
= "Noclone
campaign";
//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 content
string
subject
= "NoClone
4 is released!";
string
content
= "Download
NoClone 4 at http://noclone.net now!";
//Create a SpreadWebService
object and use its method.
SpreadWebService MySpread = new
SpreadWebService();
string result = MySpread.send2(loginName,loginPassword,campaignName,from,fromName,_to,subject,content);