Skip Navigation Links.
展开 最小化

SpreadWebServcie.AddSenderEmail Method

添加发送者邮箱地址.

参数

参数

类型

描述

loginEmail

String

Spread账号的邮箱地址.

password

String

Spread账号的密码或者 API Key.

senderEmail

String

被添加的发送者邮箱地址.

返回结果

True - 成功.

False - 这个发送者邮箱地址已经存在.

例子

string loginEmail = "Spread@reasonables.com";

string loginPassword = "Spread";

string senderEmial = "Send1@reasonables.com";

SpreadAPI.SpreadWebService MySpread = new SpreadAPI.SpreadWebService();

bool result = MySpread.AddSenderEmail(loginEmail, loginPassword, senderEmial);

Dim loginEmail As String = "Spread@reasonables.com"

Dim loginPassword As String = "Spread"

Dim senderEmial As String = "Send1@reasonables.com"

Dim MySpread As New SpreadAPI.SpreadWebService

Dim result As Boolean = MySpread.AddSenderEmail(loginEmail, loginPassword, senderEmial)

No sample for PHP.
No sample.