SpreadWebServcie.Send2 Method

 

指定郵件活動的名稱一對一的發送郵件.

注:每日最多設定20個不同的Campagin Name.
聯系人將自動加入“Auto_+郵件名“的聯系人列表,此函數允許重複發送,所以對應名單可能會出現重複聯系人.請勿在其他郵件使用該聯系人列表,以防止郵件重複發送.

public String Send2 (

string loginEmail,

string password,

string campaignName,

string from,

string fromName,

string _to,

string subject,

string content

)

參數

參數

類型

描述

loginEmail

String

Spread賬號的郵件地址

password

String

Spread賬號的密碼或者 API Key.

campaignName

String

被發送郵件的名稱

from

String

發送者的郵件地址

fromName

String

發送者的名稱.

_to

String

收件者的郵箱地址.

subject

String

郵件的主題.

content

String

郵件内容.

返回結果

String  表示郵件的發送狀態.

例子

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);

參見

SpreadWebService Class | Spread Web Service Namespace

Subscriber Class

DoubleOptIn Enumeration