string
LoginEmail
= "spread@reasonables.com";
string
LoginPassword
= "spread";
string
CampaignName
=
DateTime
.Now.ToString();
//Define the from
infomation
string
From
= "myedm@edm.com";
string
FromName
= "Reasonable";
//Define
recipient email
string
To
= "noclone@reasonables.com";
string
replyTo
= "myedm@edm.com";
//Define
the email subject and body
string
Subject
= "NoClone
4 is released!";
string
Body
= "Download
NoClone 4 at http://noclone.net now!";
//Attachment infomation.
CampaignAttachment[]
files
=
new
CampaignAttachment
[2];
files[0]
=
new
CampaignAttachment
();
files[0].displayName
=
"1234.txt"
;
files[0].file
=
File
.ReadAllBytes(
"xxxx/1234.txt"
);
files[0].fileType
=
".txt"
;
files[1]
=
new
CampaignAttachment
();
files[1].displayName
=
"cat.png"
;
files[1].file
=
File
.ReadAllBytes(
"xxxx/cat.png"
);
files[1].fileType
=
".png"
;
//Create a SpreadWebService
object and use its method.
SpreadWebService MySpread = new
SpreadWebService();
string result = MySpread.SendWithAttachment(LoginEmail,LoginPassword,CampaignName,
From,FromName,To,replyTo,Subject,Body,files);