<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ian Winter &#187; mailbuild</title>
	<atom:link href="http://ianwinter.co.uk/tag/mailbuild/feed/" rel="self" type="application/rss+xml" />
	<link>http://ianwinter.co.uk</link>
	<description>Have you found the instructions yet?</description>
	<lastBuildDate>Wed, 14 Sep 2011 22:16:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Calling the Mailbuild API from CF</title>
		<link>http://ianwinter.co.uk/2007/12/04/calling-the-mailbuild-api-from-cf/</link>
		<comments>http://ianwinter.co.uk/2007/12/04/calling-the-mailbuild-api-from-cf/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 15:42:00 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[mailbuild]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Had to help with someone out today who was trying to call the Mailbuild API from ColdFusion. It&#8217;s a webservice and was proving a little annoying to get going, but after a bit of playing the final code looks like this. &#60;cfscript&#62; params = structNew(); params.ApiKey = '{yourkey}'; params.ListID = '{yourlistid}'; params.Email = 'name@domain.com'; params.Name [...]]]></description>
			<content:encoded><![CDATA[<p>Had to help with someone out today who was trying to call the Mailbuild API from ColdFusion. It&#8217;s a webservice and was proving a little annoying to get going, but after a bit of playing the final code looks like this.</p>
<p><code>&lt;cfscript&gt;<br />
 params = structNew();<br />
 params.ApiKey = '{yourkey}';<br />
 params.ListID = '{yourlistid}';<br />
 params.Email = 'name@domain.com';<br />
 params.Name = 'Name';<br />
&lt;/cfscript&gt;</code></p>
<p><code>&lt;cfinvoke webservice="http://{company}.createsend.com/api/api.asmx?wsdl"<br />
      method="AddSubscriber"<br />
      parameters = "#params#"&gt;</code></p>
<p>This is adding a new subscriber to a given list. Hopefully this might help someone integrating with CF!</p>
]]></content:encoded>
			<wfw:commentRss>http://ianwinter.co.uk/2007/12/04/calling-the-mailbuild-api-from-cf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

