首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

Apache Commons Email 怎的设置接收方发送已读回执

2012-07-31 
Apache Commons Email 怎样设置接收方发送已读回执?Apache Commons Email 怎样设置接收方发送已读回执?在

Apache Commons Email 怎样设置接收方发送已读回执?
Apache Commons Email 怎样设置接收方发送已读回执?

在给别人发邮件时,怎么知道对方是否收到?

?

类似126/163邮箱里面,发信时 勾选 “[ ] 已读回执

对方收到邮件时,如果邮件客户端支持已读回执,就会弹出询问,比如163邮箱的提示语为

点击发送就会发送已读回执,否则不发送,完全邮接收者自行决定。

?

如果发送已读回执,发送方(或指定的邮箱、见下面的代码说明)就会收到一封邮件,

标题为:

已读: 新计划,请查阅

大体内容如下:

?

// String receiptTo = "xxx@domain.com";// String receiptTo = ""某某某" <xxx@126.com>";email.addHeader("Disposition-Notification-To", receiptTo);

?

?

其中 receiptTo 可以是发送者邮箱,也可以是别的邮箱。

?

?

javadoc 写道public void addHeader(String name, String value)

Adds a header ( name, value ) to the headers Map.

Example:

X-Mailer: Sendmail,
X-Priority: 1( highest ) or 2( high ) 3( normal ) 4( low ) and 5( lowest )
Disposition-Notification-To: user@domain.net?

?

热点排行