There's alot of stuff to do!!
1. Assets that will be published to ExactTarget will use the
2. Configure HTTP Export, Package and Workflow to Publish out to the ExactTarget Server Url
To Configure the HTTP Export:
1. Goto System -> Configure -> Export -> HTTP
2. Enter an abitrary name.
3. Enter URL http://www.exacttarget.com/api/integrate.asp
4. Method = Post
5. Encoding = XML fields
http_insert.asp & http_update.asp uses the same code. Essentially a system.include(http_insert.asp) in the http_update.asp should do the trick:
Here is the code for http_insert.asp:
For a good example of this, MyHorse or MEHC uses this in their Newsletters.
1. Assets that will be published to ExactTarget will use the
http_insert.asp
and http_update.asp
templates.2. Configure HTTP Export, Package and Workflow to Publish out to the ExactTarget Server Url
To Configure the HTTP Export:
1. Goto System -> Configure -> Export -> HTTP
2. Enter an abitrary name.
3. Enter URL http://www.exacttarget.com/api/integrate.asp
4. Method = Post
5. Encoding = XML fields
http_insert.asp & http_update.asp uses the same code. Essentially a system.include(http_insert.asp) in the http_update.asp should do the trick:
Here is the code for http_insert.asp:
<% system.setdependency(false) %><% system.startCapture() %>
<% system.include "output.asp" %>
<% strHTML = system.stopCapture() %>
<% system.startCapture() %>
belvoir
belv0!r
email
add
HTMLPaste
<%= content.item("filename") %>
<%= content.item("email_subject") %>
&![CDATA[<%= strHTML %>]]>
<% strPOST = system.stopCapture() %>qf=xml&xml=<%= util.urlencode(strPOST) %>
For a good example of this, MyHorse or MEHC uses this in their Newsletters.
Comments