<?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>Solution Log &#124; Antonio David - NVNCBL &#187; API</title>
	<atom:link href="http://www.nvncbl.com/tagged/api/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nvncbl.com</link>
	<description>A place to log my programming solutions for future reference</description>
	<lastBuildDate>Sun, 28 Aug 2011 01:20:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magento &#8211; Accept Payments via Authorize.net</title>
		<link>http://www.nvncbl.com/2010/03/magento-accept-payments-via-authorize-net/</link>
		<comments>http://www.nvncbl.com/2010/03/magento-accept-payments-via-authorize-net/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 18:59:14 +0000</pubDate>
		<dc:creator>Antonio</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[authorize.net]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[payment gateway]]></category>
		<category><![CDATA[payment module]]></category>
		<category><![CDATA[redstage]]></category>
		<category><![CDATA[transaction]]></category>

		<guid isPermaLink="false">http://www.nvncbl.com/?p=555</guid>
		<description><![CDATA[Use this resource “How to Set Up Authorize.net Payment Gateway” at Redstage&#8217;s Magento Blog for more information on how to set up the Authorize.net payment module in Magento.  The article shows where to get the API and Transaction Keys, as well as where to enter them into Magento.
As with most payment gateways, the steps [...]]]></description>
			<content:encoded><![CDATA[<p>Use this resource “<a href="http://www.redstage.com/magento/blog/2010/03/29/how-to-set-up-authorize-net-payment-gateway/" class="external">How to Set Up Authorize.net Payment Gateway</a>” at Redstage&#8217;s <a href="http://www.redstage.com/magento/blog/" class="external">Magento Blog</a> for more information on how to set up the <a href="http://www.authorize.net/" class="external">Authorize.net</a> payment module in Magento.  The article shows where to get the API and Transaction Keys, as well as where to enter them into Magento.</p>
<p>As with most payment gateways, the steps involved are a matter of:</p>
<ol>
<li>Gathering the appropriate information (provided by the gateway service)</li>
<li>Enter the information into the Magento Admin Panel</li>
<li>Activate the payment module</li>
</ol>
<p><a href="http://www.redstage.com/magento/blog/2010/03/29/how-to-set-up-authorize-net-payment-gateway/" class="external">Full procedure</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nvncbl.com/2010/03/magento-accept-payments-via-authorize-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ConstantContact Send Welcome Email When Creating a New Contact via API</title>
		<link>http://www.nvncbl.com/2010/03/constantcontact-send-welcome-email-when-creating-a-new-contact-via-api/</link>
		<comments>http://www.nvncbl.com/2010/03/constantcontact-send-welcome-email-when-creating-a-new-contact-via-api/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 17:34:32 +0000</pubDate>
		<dc:creator>Antonio</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[autoresponder]]></category>
		<category><![CDATA[constantcontact]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[mailing list]]></category>
		<category><![CDATA[welcome email]]></category>

		<guid isPermaLink="false">http://www.nvncbl.com/?p=507</guid>
		<description><![CDATA[Using the ConstantContact mailing list, I was having trouble getting the welcome email to send after creating a new contact through the API.  I had tried checking the &#8220;Autoresponder&#8221; box in the admin panel, but still no welcome email.  The solution is to have:

var $actionBy = 'ACTION_BY_CONTACT';

in cc_class.php (provided via the &#8220;PHP Sample [...]]]></description>
			<content:encoded><![CDATA[<p>Using the ConstantContact mailing list, I was having trouble getting the welcome email to send after creating a new contact through the API.  I had tried checking the &#8220;Autoresponder&#8221; box in the admin panel, but still no welcome email.  The solution is to have:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$actionBy</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'ACTION_BY_CONTACT'</span><span style="color: #339933;">;</span></pre></div></div>

<p>in cc_class.php (provided via the &#8220;<a href="http://developer.constantcontact.com/samples/upload_forms" class="external">PHP Sample Forms</a>&#8221; zip file).  By default, this value is:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$actionBy</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'ACTION_BY_CUSTOMER'</span></pre></div></div>

<p> instead, which does not trigger the welcome email.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nvncbl.com/2010/03/constantcontact-send-welcome-email-when-creating-a-new-contact-via-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

