目前正在使用 ExactTargets Mobile Push SDK 测试 iPhone 应用程序。一切似乎都已正确设置,但当选择加入设备并自动创建联系人时,它将在选择加入发生前 10-15 分钟左右有一个选择退出日期时间。另外,选择退出的来源是 serviceFeedback,但我无法找到任何有关其含义的文档。
我在ExactTarget中创建了一个简单的电子邮件模板,其ID为19712732.
我想使用此电子邮件模板使用Exact Target的WebService API(C#代码)发送电子邮件:https://webservice.exacttarget.com/Service.asmx?
维基文档在这里:http://wiki.memberlandingpages.com/
怎么可能呢?我浏览了文档,但找不到任何相关内容.
此外,我希望能够使用API设置电子邮件模板的一些内容.例如,也许我可以添加一个键/属性,如{CustomHtml1},然后在我的C#代码中设置此键/属性的值?
谢谢,
我有2张这样的桌子,
表格1
Id Locations
-- ---------
1 India, Australia
2 US , UK
Run Code Online (Sandbox Code Playgroud)
表2
Table2Id Location
-------- --------
101 Italy
102 UK
103 Hungary
104 India
Run Code Online (Sandbox Code Playgroud)
我需要在条件内连接这两个表,如果Locations在table2中包含Locationtable1 中的 字段.结果就像
Id Table2Id Location Locations
-- -------- -------- ---------
1 104 India India, Australia
2 102 UK US , UK
Run Code Online (Sandbox Code Playgroud)
我试过类似的东西
Select t1.id,
t2.Table2Id,
t1.Locations,
t2.Location
From Table1 t1
Inner join Table2 t2 On CONTAINS(t1.Locations, t2.Location)
Run Code Online (Sandbox Code Playgroud)
但第二个参数contains应该是一个字符串.它不允许在那里给出列名.
我不能在查询中使用temptable或variable.因为此查询需要ExactTarget在不支持temptable和支持的电子邮件广告系列工具上运行 …
我正在尝试使用 node-soap 包调用Create传入TriggeredSend名为 ExactTarget SOAP Web 服务的类型化对象的方法。Objects
我需要创建看起来像这样的东西(注意xsi:type="ns0:TriggeredSend"):
<SOAP-ENV:Envelope xmlns:etns="http://exacttarget.com" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:ns0="http://exacttarget.com/wsdl/partnerAPI" xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
</SOAP-ENV:Header>
<ns1:Body>
<ns0:CreateRequest>
<ns0:Objects xsi:type="ns0:TriggeredSend">
<ns0:TriggeredSendDefinition>
<ns0:CustomerKey>abc</ns0:CustomerKey>
</ns0:TriggeredSendDefinition>
</ns0:Objects>
</ns0:CreateRequest>
</ns1:Body>
</SOAP-ENV:Envelope>
Run Code Online (Sandbox Code Playgroud)
通过下面的代码,我接近了:
var soap = require('soap')
soap.createClient(url, function(err, client){
client.Create({
Objects: {
TriggeredSendDefinition: {
CustomerKey: 'abc'
}
},
function(err, response) {})
});
});
Run Code Online (Sandbox Code Playgroud)
这给了我这个(没有xsi:type):
<ns0:CreateRequest>
<ns0:Objects>
<ns0:TriggeredSendDefinition>
<ns0:CustomerKey>abc</ns0:CustomerKey>
</ns0:TriggeredSendDefinition>
</ns0:Objects>
</ns0:CreateRequest>
Run Code Online (Sandbox Code Playgroud)
如何指定元素TriggeredSend的类型Objects?
我对精确目标和 ampscript 很陌生,所以如果这是微不足道的,我很抱歉。我尝试搜索帮助文档没有结果。
我想将电子邮件名称或 ID 作为元数据包含在电子邮件中。
有没有办法在发送时检索此信息并将其包含在电子邮件中?
exacttarget ×5
email ×2
ampscript ×1
asp.net ×1
c# ×1
contains ×1
inner-join ×1
node.js ×1
soap ×1
sql ×1
web-services ×1