/message/{messageID}?preview
URL
- {HOST}/services /message/{messageID}?preview
支持格式
HTTP 请求方式
认证方式
请求数限制
请求参数
字段名称 | 是否必选 | 字段类型 | 说明 |
auth | 是 | String | BASIC/APIKEY/ OAUTH 三种认证方式信息中的一种 |
alt | 是 | String | 通过该参数,你可以改变返回值的格式,目前支持的返回值格式包括:atom(默认) ,暂不支持json |
messageID |
是 |
String |
邮件ID |
请求字符串
无
返回结果
<?xml version="1.0" encoding="GBK"?>
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005" xmlns:um="http://www.unimarketing.com.cn/xmlns/" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">
<title type="text">更新后的邮件</title>
<link href="http://services.unimarketing.com.cn/message/9990" rel="related"></link>
<content type="text"><![CDATA[<html><head><title>更新后的邮件</title><meta http-equiv="Content-type" content="text/html;charset=UTF-8" /></head><body><TABLE WIDTH="100%"><TR><TD ALIGN="center" ><table width="600px" border="0" cellspacing="0" cellpadding="0" style="font-size:12px; font-family:Arial,'宋体'; word-wrap: break-word; word-break: normal; line-height:18px;text-align:left" id="divheaderwidthzh" ><tr><td>如果此邮件无法正常显示,请点击<span id="headerwebversion1" >&nbsp;<a href="#">网页版本</a></span><span id="headerunsubscribezh" >&nbsp;|&nbsp;<a href="#">退订</a></span><span id="headermanagePreferencezh" style="display:" >&nbsp;|&nbsp;<a href="#">用户中心</a></span><span id="headerforwardFriendzh" style="display:" >&nbsp;|&nbsp;<a href="#">推荐好友</a></span></td></tr><tr><td><span id="headersafeEmailzh" style="display:">为确保您能正常收到我们的信息,请把&nbsp;<a href="mailto:unimail2012@163.com">unimail2012@163.com</a> 添加为你的联系人。</span></td></tr></table></center></TD></TR><TR><TD><table cellspacing="0" cellpadding="0" width="600" align="#" border="0"><tbody><tr><td><p align="left">此邮件发送至 [$contact.email ] ,我的修改修改的测试邮件——————————————您收到此邮件是因为您向 “杨洋阳” 提供了您的邮件地址。<br /><br /> “杨洋阳” 尊重您的隐私。若要更新您的信息,请点击 <a href="#">用户中心</a> ;如果您不希望再次收到 “杨洋阳” 发来的电子邮件,请点击 <a href="#">退订</a> 取消订阅;若您对此邮件内容感兴趣,也可点击 <a href="#">推荐给好友</a>将邮件推荐给您的好友一同分享。</p></td></tr><tr><td align="center"><a href="http://www.unimktg.com" target="_blank" link=145913><img src="http://wwww.unimktg.com/files/logo/821/mflog_821.gif" border="0"></a><br><a href="#">退订</a> |&nbsp; <a href="#">投诉</a></td></tr></tbody></table> </TD></TR><TR><TD><div width="100%" align=center><table width="600px" border="0" cellspacing="0" cellpadding="0" style="font-size:12px; font-family:Arial,'宋体'; word-wrap: break-word; word-break: normal; line-height:18px;text-align:left" id="divfooterwidthzh" ><tr><td>此邮件发送至 [ $contact.email ],您收到此邮件是因为您向&nbsp;test1202&nbsp;提供了您的邮件地址。</td></tr><tr><td><span id="unsubscribe" ><a href="#">退订</a></span><span id="footermanagePreferencezh" style="display:" >&nbsp;|&nbsp;<a href="#">用户中心</a></span><span id="footerforwardFriendzh" style="display:">&nbsp;|&nbsp;<a href="#">推荐好友</a></span></td></tr></table><table><tr><td>&nbsp;</td></tr><tr ><td align="center" ><a href="http://www.unimarketing.com.cn/" target="_blank"><img src="http://www.unimail.cc/images/delieverbylogo.gif" border="0" type="footlog" /></a><br><a href='#' style='font-family: Arial,宋体;font-size:12px'>退订</a> |&nbsp; <a href='#' style='font-family: Arial,宋体;font-size:12px'>投诉</a></td></tr><br></table></div></TD></TR></TABLE></body></html>]]></content>
</entry>
字段说明
字段名称 | 意义 | 数据类型 | 备注 |
title |
邮件名称 |
String |
|
link |
邮件ID |
Number |
|
content |
邮件内容 |
String |
|
调用示例(Java 示例)
package cn.unisoftware.api.client.example.mail;
import org.apache.abdera.model.Entry;
import cn.unisoftware.api.client.ApiClient;
import cn.unisoftware.api.client.utils.AtomConstants;
import cn.unisoftware.api.client.utils.XmlUtil;
/**
* 预览邮件
* @author DJ
* @test 【true】
*/
public class PreviewMail {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
ApiClient apiClient = ApiClient.getApiClient(false,ApiClient.AuthMode.APIKEY, new String[]{AtomConstants.apikey,AtomConstants.apisecret});
Entry res = apiClient.previewMail("9990");//9989 不存在,已被删除
XmlUtil.displayEncodeXml(res);
}
}