マーケティングプラットフォームのリード宛てにメール送信するためのAPIです。
visitor.postMail
メソッド | URL |
---|---|
POST | https://{domainname}/services/rest/visitor/mail |
なし
なし
★ エレメント名:Mail ★ データ型:MailType
カラム名 | 必須 | データ型 | 内容 |
---|---|---|---|
VisitorId | 必須 | string | 宛先リードID |
MailType | 必須 | MailTypeType | メールタイプ MailTypeId:MailTypeName 1:テキスト形式 2:HTML形式 3:マルチパート形式 |
Title | 必須 | string | タイトル |
SenderAddress | オプション | string | 送信者E-mailアドレス |
SenderName | オプション | string | 送信者名 |
Cc | オプション | string | CC ※複数メールアドレスを指定する場合にはアドレスをカンマ区切りで指定してください。 |
Bcc | オプション | string | BCC ※複数メールアドレスを指定する場合にはアドレスをカンマ区切りで指定してください。 |
ReplyTo | オプション | string | 返信先 |
ReturnPath | オプション | string | エラー時返信先 |
Body | オプション | string | 本文 |
Body2 | オプション | string | 本文2 (マルチパート形式におけるHTML文面) |
Id | オプション | string | メール情報ID |
Charset | オプション | CharsetType | 文字コード CharsetId:CharsetName 文字コードID:文字コード名 |
AttachmentFile | オプション | AttachmentFileType | 添付ファイル AttachmentFileId:ファイルID AttachmentFileName:ファイル名AttachmentFileExtension:ファイル拡張子 |
SenderDomainAuthentication | オプション | SenderDomainAuthenticationType | 送信ドメイン SenderDomainAuthenticationId:送信ドメイン ID SenderDomainAuthenticationName:設定名 ※こちらを指定された場合、SenderAddressの末尾に”@” + 送信ドメインのドメインを付与します。 |
なし
コード | 内容 |
---|---|
201 | 正常終了 |
なし
なし
なし
<?xml version='1.0' encoding='UTF-8'?>
<Mail xmlns="http://smartseminar.jp/">
<AttachmentFile>
<AttachmentFileId>6409</AttachmentFileId>
<AttachmentFileName>プロモーション資料131118</AttachmentFileName>
<AttachmentFileExtension>pdf</AttachmentFileExtension>
</AttachmentFile>
<Bcc>failurebcc@shanon.co.jp</Bcc>
<Body>これはメールボディー</Body>
<Body2>これはメールボディー2</Body2>
<Cc>failfailure_cc@shanon.co.jp</Cc>
<MailType>
<MailTypeId>1</MailTypeId>
<MailTypeName>マルチパート形式</MailTypeName>
</MailType>
<ReplyTo>failurefailure_reply_to@shanon.co.jp</ReplyTo>
<ReturnPath>failurefailure_return_path@shanon.co.jp</ReturnPath>
<SenderAddress>system@smartseminar.jp</SenderAddress>
<SenderName>シャノン管理者</SenderName>
<Title>タイトル</Title>
<VisitorId>10</VisitorId>
</Mail>
<?xml version='1.0' encoding='UTF-8'?>
<Mail xmlns="http://smartseminar.jp/">
<AttachmentFile>
<AttachmentFileId>6409</AttachmentFileId>
<AttachmentFileName>プロモーション資料131118</AttachmentFileName>
<AttachmentFileExtension>pdf</AttachmentFileExtension>
</AttachmentFile>
<Bcc>failurebcc@shanon.co.jp</Bcc>
<Body>これはメールボディー</Body>
<Body2>これはメールボディー2</Body2>
<Cc>failfailure_cc@shanon.co.jp</Cc>
<MailType>
<MailTypeId>1</MailTypeId>
<MailTypeName>マルチパート形式</MailTypeName>
</MailType>
<ReplyTo>failurefailure_reply_to@shanon.co.jp</ReplyTo>
<ReturnPath>failurefailure_return_path@shanon.co.jp</ReturnPath>
<SenderAddress>system</SenderAddress>
<SenderName>シャノン管理者</SenderName>
<Title>タイトル</Title>
<VisitorId>10</VisitorId>
<SenderDomainAuthentication>
<SenderDomainAuthenticationId>2</SenderDomainAuthenticationId>
<SenderDomainAuthenticationName>smartseminar.jpの設定</SenderDomainAuthenticationName>
</SenderDomainAuthentication>
</Mail>
なし