<?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>DAP Documentation &#187; 3rd Party List Integration</title>
	<atom:link href="http://www.digitalaccesspass.com/doc/category/3rd-party-list-integration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalaccesspass.com/doc</link>
	<description>Documentation for DigitalAccessPass.com</description>
	<lastBuildDate>Wed, 08 Feb 2012 07:08:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>DAP Plugin Framework</title>
		<link>http://www.digitalaccesspass.com/doc/dap-plugin-framework/</link>
		<comments>http://www.digitalaccesspass.com/doc/dap-plugin-framework/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 19:03:04 +0000</pubDate>
		<dc:creator>Veena Prashanth</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[DAP]]></category>
		<category><![CDATA[Integration with Shopping Carts]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=1321</guid>
		<description><![CDATA[How To Setup Notifications/Triggers From DAP to 3rd Party APIs We have now created a plugin framework that will allow DAP to trigger calls to 3rd party services when a user is added to a product (subscription/registration event) or when a user loses access to product (unsubscribe/unregister event). In fact, we used the same framework [...]]]></description>
			<content:encoded><![CDATA[<h3>How To Setup Notifications/Triggers From DAP to 3rd Party APIs</h3>
<p>We have now created a plugin framework that will allow DAP to trigger calls to 3rd party services when a user is added to a product (subscription/registration event) or when a user loses access to product (unsubscribe/unregister event).</p>
<p>In fact, we used the same framework to develop<a href="http://www.digitalaccesspass.com/doc/mailchimp-integration/"> <strong>DAP -&gt; Mailchimp integration</strong></a><strong> </strong>in DAP 4.1.</p>
<p>Here&#8217;s the steps :</p>
<p>1) If you want DAP to trigger calls to the APIs/methods you wrote upon an  addUserToProduct event or removeUserFromProduct event in DAP, then in the DAP products page &#8211; &gt; notify plugin field, use the following format to integrate the APIs/class files.  You can integrate multiple systems with DAP using this framework.</p>
<p><img class="alignnone size-full wp-image-1324" title="DAP_plugin_integration" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/03/DAP_plugin_integration.png" alt="" width="556" height="328" /></p>
<p>Say you want to integrate classname1 (that has the necessary APIs to register/unregister users to 3rd party service like Mailchimp ) and classname 2 (that has the necessary  APIs to register/unregister users to another 3rd party service like GetResponse), then use this format in the notify plugins field above.</p>
<p>classname1:VALUE 1 you want to pass to the api: VALUE 2 you want to pass to the api: VALUE 3 you want to pass to the api</p>
<p>If you want DAP to call multiple APIs/ Classes, then just create a comma seperated list of classes that DAP should notify.<br />
classname1:VALUE 1 you want to pass to the api: VALUE 2 you want to pass to the api: VALUE 3 you want to pass to the api,<br />
classname2:VALUE 1 you want to pass to the api: VALUE 2 you want to pass to the api,<br />
classname3:VALUE 1 you want to pass to the api</p>
<p>Whatever values (VALUE1, VALUE2.. ) you put next to the class name (all values should be &#8220;:&#8221; separated), DAP will forward those params/values to your APIs when a user is added to product or user is removed from product.</p>
<p>To integrate say classname1 which consists of the methods/apis to talk to your 3rd party services, create a folder called classname1 under /dap/plugins folder. Then under the classname1 folder, create a php script called classname1.class.php  (just the way you notice a folder called mailchimp and under mailchimp a class file called mailchimp.class.php).</p>
<p>So you will have something like this:</p>
<p>/dap/plugins/classname1/classname1.class.php</p>
<p>Here&#8217;s what you need to have in classname1.class.php ( skleton class implementation ) :</p>
<p>&lt; ?php</p>
<p>class classname1 {</p>
<p>function classname1() // constructor<br />
{   }</p>
<p>//======== USER REGISTRATION===========</p>
<p>// this function is called by dap when a user is added to a product</p>
<p>function register($userId, $productId, $params) {</p>
<p>logToFile(&#8220;classname1.class.php: register(): &#8220;, LOG_INFO_DAP);<br />
$dapuser = Dap_User::loadUserById($userId);<br />
$email = trim($dapuser-&gt;getEmail());<br />
$username = trim($dapuser-&gt;getUser_name());<br />
$firstname = trim($dapuser-&gt;getFirst_name());<br />
$lastname = trim($dapuser-&gt;getLast_name());</p>
<p>$data = explode(&#8220;:&#8221;,$params);</p>
<p>}</p>
<p>function unregister($userId, $productId, $params)<br />
{<br />
logToFile(&#8220;classname1.class.php: register(): &#8220;, LOG_INFO_DAP);</p>
<p>$dapuser = Dap_User::loadUserById($userId);<br />
$email = trim($dapuser-&gt;getEmail());</p>
<p>$data = explode(&#8220;:&#8221;,$params);</p>
<p>}</p>
<p>}<br />
?&gt;</p>
<p><strong>NOTE: </strong></p>
<p><strong>You MUST have same name methods (called register() and unregister() ) and the exact method signature as you see above.</strong></p>
<p>You can  call other methods/functions from register/unregister and/or</p>
<p>You can call 3rd party APIs from register/unregister methods and/or</p>
<p>You can include other class files.</p>
<p>Whatever values you pass (VALUE1, VALUE2 etc) via notify plugin, you can access those values in these methods. The values are available in the $params array.</p>
<p><strong>That&#8217;s it. </strong></p>
<p>You can add a test user to a product in DAP (via dap admin -&gt; add users) and see if things work as expected.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/dap-plugin-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GetResponse Integration</title>
		<link>http://www.digitalaccesspass.com/doc/getresponse-integration/</link>
		<comments>http://www.digitalaccesspass.com/doc/getresponse-integration/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 19:22:51 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[GetResponse]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=1287</guid>
		<description><![CDATA[DAP integrates with GetResponse very easily. How it works If you are on DAP 4.1, then DAP can connect with getresponse using the APIs provided by getresponse. So when someone buys or signs up for that Product, then DAP will automatically notify your GetResponse list, and add the buyer or subscriber (if it&#8217;s a free [...]]]></description>
			<content:encoded><![CDATA[<p>DAP integrates with GetResponse very easily.</p>
<h3>How it works</h3>
<p>If you are on DAP 4.1, then DAP can connect with getresponse using the APIs provided by getresponse.</p>
<p>So when someone buys or signs up for that Product, then DAP will  automatically notify your GetResponse list, and add the buyer or  subscriber (if it&#8217;s a free sign-up) to your GetResponse list.</p>
<p>1) Retrieve the getresponse API Key from this URL:</p>
<p>http://www.getresponse.com/my_api_key.html</p>
<p>2) Then go to DAP products page, select the product and under the Notify Plugin section, add the following:</p>
<p>Notify Plugin upon User -&gt; Product Activation (Add) =&gt;<br />
getresponse:&lt;your API key&gt;:&lt;compaign_name&gt;</p>
<p>For ex -</p>
<p>getresponse:89kjhjgjfhgf76ikghkgk:MYCOMP</p>
<p>That&#8217;s it.</p>
<p>Now go to DAP admin -&gt; add users page and add a brand new user / email and see what happens.</p>
<p>The added user shd first receive the confirmation email from getresponse and upon confirmation, the user shd get added to getresponse .</p>
<p>If it does not work, then set the dap log level to 5, go to dap system logs-&gt; Empty log content, and rerun the test.<br />
Then send us the log snippet from dap system -&gt; logs.</p>
<ul></ul>
<p>That&#8217;s it.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/getresponse-integration/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mailchimp Integration</title>
		<link>http://www.digitalaccesspass.com/doc/mailchimp-integration/</link>
		<comments>http://www.digitalaccesspass.com/doc/mailchimp-integration/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 22:48:52 +0000</pubDate>
		<dc:creator>Veena Prashanth</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Adding Users]]></category>
		<category><![CDATA[DAP]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[MailChimp]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=1221</guid>
		<description><![CDATA[Subscriber Flow The flow of subscriber is &#8220;FROM DAP TO Mailchimp&#8220;. User signs up at DAP first, then DAP automatically adds the user to Mailchimp list.. Admin removes the user&#8217;s access to a product, and DAP automatically removes the user from Mailchimp list. This feature is available starting DAP v4.1. How it works 1. Login [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Subscriber Flow</strong></h3>
<p>The flow of subscriber is &#8220;<strong>FROM</strong> <strong>DAP TO Mailchimp</strong>&#8220;. User signs up at DAP first, then DAP automatically adds the user to <strong>Mailchimp list.</strong>.  Admin removes the user&#8217;s access to a product, and DAP automatically removes the user from <strong>Mailchimp list.</strong> This feature is available starting DAP v4.1.</p>
<h3>How it works</h3>
<p>		<script type="text/javascript" src="http://www.digitalaccesspass.com/doc/wp-content/plugins/S3MediaVault/flowplayer-3.1.2.min.js"></script>
	
        <div id="player1296911733-1328796930" style="width:640px; height:378px"></div>
            <script type="text/javascript">
                flowplayer("player1296911733-1328796930", "http://www.digitalaccesspass.com/doc/wp-content/plugins/S3MediaVault/flowplayer-3.1.2.swf", { 
                    clip: { 
                        url: escape('http://digitalaccesspass.s3.amazonaws.com/mailchimp.mp4?AWSAccessKeyId=1HPS101KFMM8SKNK9BG2&Expires=1328797930&Signature=kXua69YiBefM6PPyxidu3fRdLCo%3D'), 
                        autoPlay: false, 
                        autoBuffering: false
                    }
                });			
            </script>
</p>
<p>1. Login to your account at http://admin.mailchimp.com/account/api/ and note down the API Key.</p>
<h3>Image 1:</h3>
<p><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/02/DAP_Mailchimp_API_Key2.png" target="_blank" rel="lightbox[1221]" title="DAP_Mailchimp_API_Key"><img class="alignnone size-large wp-image-1224" title="DAP_Mailchimp_API_Key" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/02/DAP_Mailchimp_API_Key2-1024x490.png" alt="" width="612" height="292" /></a></p>
<p>2. Go to http://admin.mailchimp.com/lists/ and grab your List&#8217;s Unique Id. Click the &#8220;settings&#8221; link for the list &#8211; the Unique Id is at the bottom of that page.</p>
<h3>Image 2:</h3>
<h3><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/02/DAP_Mailchimp_unique_list_id.png" target="_blank" rel="lightbox[1221]" title="DAP_Mailchimp_unique_list_id"><img class="size-large wp-image-1225 alignnone" title="DAP_Mailchimp_unique_list_id" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/02/DAP_Mailchimp_unique_list_id-1024x607.png" alt="" width="606" height="357" /></a></h3>
<p>3. Log in to your DAP Admin Dashboard -> Products Page and select the product (whose members you wish to add automatically to your Mailchimp list.</p>
<p>4. If the list Id of the mailchimp list that you want to integrate with a DAP product/membership is say &#8220;ffffffffff&#8221;, and say your Mailchimp API Key is &#8216;ffffffffffffffffffffffffffffff-us2&#8242; then add the following to the &#8220;Notify Plugin upon User -> Product Activation (Add)&#8221;  in DAP products page and HIT Save/Update Product.</p>
<p>mailchimp:ffffffffffffffffffffffffffffff-us2:ffffffffff</p>
<p><strong>Image 3:</strong></p>
<p><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/02/DAP_Mailchimp_product_setting.png" target="_blank" rel="lightbox[1221]" title="DAP_Mailchimp_product_setting"><img class="alignnone size-large wp-image-1228" title="DAP_Mailchimp_product_setting" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/02/DAP_Mailchimp_product_setting-1024x690.png" alt="" width="570" height="494" /></a></p>
<p>That&#8217;s it!</p>
<p>Save the product and this completes the DAP->Mailchimp integration.</p>
<h2>How This Works</h2>
<p>So let&#8217;s say you picked the list &#8220;ffffffffff&#8221; in your Mailchimp account,  and the DAP Product &#8220;Example Subscription Product&#8221; (as shown in the  screenshots above).</p>
<p>So once you add &#8220;<strong>mailchimp:ffffffffffffffffffffffffffffff-us2:ffffffffff</strong>&#8221; to the product&#8217;s &#8220;<strong>Notify plugin upon user->product activation</strong>&#8221; and &#8220;<strong>Notify plugin upon user->product de-activation</strong>&#8221; field and save it, every time someone gets  access to the &#8220;Example Subscription Product&#8221; product (regardless of  whether they buy it, or you give them access on the backend), DAP will  automatically  add them to the list &#8211; <strong>ffffffffff. </strong>And everytime you remove the user&#8217;s access to product (click on &#8216;Remove&#8217; in DAP manage users page), DAP will automatically remove the user from the list.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 454px; width: 1px; height: 1px; overflow: hidden;">df11c84ab4</div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/mailchimp-integration/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>How To Use DAP&#8217;s Default Password</title>
		<link>http://www.digitalaccesspass.com/doc/how-to-use-daps-default-password/</link>
		<comments>http://www.digitalaccesspass.com/doc/how-to-use-daps-default-password/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 03:36:17 +0000</pubDate>
		<dc:creator>Veena Prashanth</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Aweber]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Merge Tags]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=519</guid>
		<description><![CDATA[Starting DAP 3.8, DAP has a new feature where you can ask DAP to always generate a pre-chosen, default password of your choice for all new members. So all new users will be assigned the same default password, which they can of course change as soon as (or any time after) they login. This is [...]]]></description>
			<content:encoded><![CDATA[<p>Starting DAP 3.8, DAP has a new feature where you can ask DAP to always generate a pre-chosen, default password of your choice for all new members.</p>
<p>So all new users will be assigned the same default password, which they can of course change as soon as (or any time after) they login.</p>
<p>This is especially helpful for new users, if instead of DAP, you want a third-party service like Aweber to send out the new member&#8217;s &#8220;Welcome Email&#8221; which contains their email and password.</p>
<p>Since DAP is unable to pass the randomly generated password to Aweber, instead, you can setup a default password by going to</p>
<blockquote><p><strong>Setup &gt; Config &gt; Advanced &gt; &#8220;If you want DAP to generate a default password for all new users, enter it here. If not, leave blank&#8221;</strong></p></blockquote>
<p>So if you set this password to say, &#8220;<strong>changethis</strong>&#8220;, then DAP will give out the same password to all new users.</p>
<p>Then, in the welcome email you configure at, say, Aweber, you would put the Aweber merge code for email id, and then enter this pre-selected password (because you already know what it is) into your Aweber email, like this:</p>
<blockquote><p>Hello {!firstname},</p>
<p>Welcome to Example.com. You may log in to your member&#8217;s area at:</p>
<p>Email: {!email}<br />
Password: changethis</p>
<p>Thank you,</p>
<p>- Admin from Example.com</p></blockquote>
<p>And if you ever change the default password in DAP, don&#8217;t forget to also change it in your welcome email at Aweber (or 3rd party email service).</p>
<p>Also, don&#8217;t use the default password in any subsequent emails, other than the Welcome email (very first email sent to member through Aweber), because the member may have already changed their password by then.</p>
<p><strong>WARNING</strong>: You must have also set up <a href="http://www.digitalaccesspass.com/doc/aweber-integration/">DAP/Aweber integration</a> first before you attempt to do this.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/how-to-use-daps-default-password/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Importing Users In Bulk Into DAP</title>
		<link>http://www.digitalaccesspass.com/doc/importing-users-in-bulk-into-dap/</link>
		<comments>http://www.digitalaccesspass.com/doc/importing-users-in-bulk-into-dap/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 20:27:00 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[User Status]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=455</guid>
		<description><![CDATA[DAP allows you to import users in bulk from an external system or database. Pre-requisites for Importing Users 1) You must have already created the Product into which the users will be imported 2) The user list has to be in a CSV (comma separated) format (one user per line), with the exact format being: [...]]]></description>
			<content:encoded><![CDATA[<p>DAP allows you to import users in bulk from an external system or database.</p>
<h3>Pre-requisites for Importing Users</h3>
<p>1) You must have already created the Product into which the users will be imported 2) The user list has to be in a CSV (comma separated) format (one user per line), with the exact format being:</p>
<blockquote><p><strong>Email,FirstName,LastName</strong></p></blockquote>
<p>LastName is optional. So your user list could have just</p>
<blockquote><p><strong>Email,FirstName</strong></p></blockquote>
<p>Example:</p>
<blockquote><p>Joe@example.com,Joe,Customer Jill@anothersite.com,Jill Bob@another.com,Bob,Member</p></blockquote>
<h3>How to do the actual import</h3>
<p><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/06/bulk-add-users.png" rel="lightbox[455]" title="bulk-add-users"><img class="alignnone size-full wp-image-457" style="border: 1px solid black;" title="bulk-add-users" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/06/bulk-add-users.png" alt="" width="569" height="399" /></a></p>
<ol>
<li>Go to Users &gt; Add &gt; &#8220;Bulk-Add Multiple Users To A Product&#8221;</li>
<li>Paste your CSV list into the large text area</li>
<li>Select the Product into which you want to import the users</li>
<li>Check the &#8220;Mark Users as Paid&#8221; checkbox if you want them to have &#8220;Paid&#8221; access to the content (just as if they are actual paying members). If you don&#8217;t check it, they will all have access as a &#8220;Free&#8221; user (instead of a &#8220;Paid&#8221; user), which means they will only have access to content within the Product that you have marked as &#8220;Free&#8221;.</li>
<li>Click on the &#8220;Bulk Add Users&#8221; button. That will first save this entire list as a CSV file in your <strong>/dap/bulk</strong> folder on your site. And then, the next time the Hourly cron (dap-cron.php) runs, it will add them one by one to the product, and send them emails as per your Product set up. So if your Product has the &#8220;Thankyou-Email&#8221; subject and body filled out, it will individually send out each of the users that <em>thankyou</em> email.</li>
</ol>
<h3>DAP will also allow bulk import of users with their existing profile</h3>
<p>This includes their existing password and other profile data as detailed in this video: See <a href="http://www.digitalaccesspass.com/videos/BulkAddUsersToDAP.php" target="_blank">Bulk Add Users</a></p>
<p>But please make sure you are using at least <strong>DAP v4.2.1 and LiveLinks v1.7</strong> , because what&#8217;s explained below is only available starting those versions.</p>
<h4>Pre-requisites for Importing Users with their existing Password, Access Start &amp; End Dates</h4>
<p>1) You must have already created the Product into which the users will be imported</p>
<p>2) The user list has to be in a CSV (comma separated) format (one user per line), with the exact format being:</p>
<blockquote><p><strong>Email,Firstname,Lastname,Password,ProductName, Address,City,State,Zip,Country,Phone,Company, Flag (to indicate Paid or Free user), Access Start Date, Access End Date,UserName</strong></p></blockquote>
<p>Example:</p>
<blockquote><p><strong>joe@somesite.com,Joe,Member,test123,Example One-time Product,99 hill ave,Cityname,NY,10001,USA,,Plug and Play Inc,y,2011-03-16, 2012-03-15,JoeMember</strong></p></blockquote>
<p>The only required fields are <strong>Email</strong>, <strong>FirstName</strong> and <strong>ProductName</strong>. If you do not want to supply a value for any of the optional fields, but still wish to import certain others, then just leave those fields empty in the data row (but the <strong>commas should remain</strong>) as shown below.</p>
<blockquote><p><strong></strong><strong>Email,Firstname,,,ProductName,,,,,,,,Flag (to indicate Paid or Free user), Access Start Date, Access End Date,UserName</strong></p></blockquote>
<h3>How to do the actual Import</h3>
<p>Create a file with the name <strong>/dap/bulk/importusers.csv</strong> file so it has the users you want to import in the format specified above.</p>
<p>Run this script on your browser to complete the import. To do that, visit the url&#8230;<strong> </strong></p>
<p><strong>http://www.yoursite.com/dap/dap-bulkImport.php</strong></p>
<p>Note:</p>
<p>* Replace &#8220;yoursite.com&#8221; with your actual domain name.</p>
<p>* And try to limit the number of users you are importing with this method to not more than 100 users at a time. Otherwise the import may timeout, because the import occurs real time (not via cron). If the user already exists in dap, then the script will just skip that user and move on to the next user in the bulk add list.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/importing-users-in-bulk-into-dap/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Email Delivery</title>
		<link>http://www.digitalaccesspass.com/doc/troubleshooting-email-delivery/</link>
		<comments>http://www.digitalaccesspass.com/doc/troubleshooting-email-delivery/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 20:21:10 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Aweber]]></category>
		<category><![CDATA[Broadcasts]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Email Resources]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Username & Password]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=453</guid>
		<description><![CDATA[The Basics Of Sending Email Through Your Web Site DAP is not an email service (like, say, Aweber). DAP is just a script &#8211; a tool, like Microsoft Outlook or Thunderbird &#8211; that simply sends out email using your web host&#8217;s email server. It is your web host&#8217;s mail server that actually sends out the [...]]]></description>
			<content:encoded><![CDATA[<h3>The Basics Of Sending Email Through Your Web Site</h3>
<p>DAP is not an email service (like, say, Aweber).</p>
<p>DAP is just a script &#8211; a tool, like Microsoft Outlook or Thunderbird &#8211; that simply sends  out email using your web host&#8217;s email server.</p>
<p>It is your web host&#8217;s mail server that actually sends out the email to the recipient. So once DAP sends out the email, it has no control over what happens next.</p>
<p>It&#8217;s just like when you put your (regular mail) letter in the mailbox (post box). It is then up to the Postal Service to actually pick up your letter, and deliver to the destination address.</p>
<p>So if the emails that DAP sends out don&#8217;t get delivered to your recipients, there could be more than one reason for that.</p>
<h3>Welcome Emails Not Going Out</h3>
<p>See this post: <a href="http://www.digitalaccesspass.com/doc/troubleshooting-welcome-email-delivery/">Troubleshooting Welcome-Email Delivery</a></p>
<h3>Autoresponder Emails Not Going Out</h3>
<p>If yours is a new site setup, then this is usually because the hourly cron-job has not been setup.</p>
<p>However, if the emails were going out fine previously, and suddenly stopped going out, then it usually is because&#8230;</p>
<ul>
<li>Something changed on your host that caused the cron to stop working.</li>
<li>There is an error in the job queue, because of which DAP is unable to proceed with the remaining non-error emails. This could have happened if you tried to send out a broadcast to a CSV list, and there was an error in one of the emails from the CSV list.</li>
<li>You&#8217;re trying to use a third party &#8220;SMTP&#8221; server to send out the emails, and your server is unable to connect to that server because the authentication settings you&#8217;ve configured on &#8220;Email &gt; SMTP&#8221; are incorrect.</li>
</ul>
<p><strong>Steps to troubleshoot</strong></p>
<ol>
<li>Make sure that the hourly cron (dap-cron.php) is still running &#8211; you need to look at your web hosting control panel for that.</li>
<li>Go to &#8220;System &gt; Job Queue&#8221; and scroll through any items there, and see if there are any scheduled messages there with the status &#8220;Error&#8221;. If yes, then click on the &#8220;Delete Jobs In Error&#8221; link. That will delete any jobs that can&#8217;t be processed because of an error in the email id or in the import process. Also be sure to click on &#8220;Delete Successful Jobs (till yesterday)&#8221; just to clear up old, sent emails.</li>
<li>Also go to &#8220;System &gt; Logs&#8221; and empty the logs.</li>
<li>Go to &#8220;System &gt; Config&#8221; and set &#8220;DAP Log Level&#8221; to &#8220;5&#8243;. That will start logging all the details you/we may need for troubleshooting.</li>
<li>Wait for the top of the next hour and then re-visit the queue and see if emails are going out.</li>
<li>If they still aren&#8217;t going out, go back to &#8220;System &gt; Logs&#8221;, copy paste all text there, and open a new ticket with that info, of course, also giving us more details about the problem, what you have tried, etc, along with your login info for: FTP, WP Admin, DAP Admin, and Web Host Control Panel.</li>
</ol>
<h3>Server Blacklisting</h3>
<p>If your inexpensive (read as <em>cheap</em> <img src='http://www.digitalaccesspass.com/doc/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <em>shared </em>web host is hosting a large number  of sites on one server, and one of them knowingly sends out spam (or mistakenly  gets flagged for spam), that will put the email deliverability of every  web site on that server in jeopardy, because your site now shares the  same IP address as that of an &#8220;alleged&#8221; spammer.</p>
<p>So your emails get sent to junk/spam folder by Gmail and Yahoo. Or  worse, they just totally disappear into the ether.</p>
<h3>Hourly Email-Sending Limits</h3>
<p>Almost all shared hosts have hourly email sending limits. For example, <a href="http://dream-host.biz" target="_blank">DreamHost</a> has an outgoing limit of 300 emails per hour. Which means, a total of only 300 emails can be sent out per hour through any web site hosted on DreamHost. All of the following count towards the 300 limit:</p>
<ul>
<li>Emails sent by any scripts on your site &#8211; like DAP</li>
<li>Your WordPress blog notification emails</li>
<li>Your WordPress admin emails,</li>
<li>WP forgot password emails,</li>
<li>WP comment notification emails,</li>
<li>Forum notification emails,</li>
<li>Forum emails sent to each other by your users,</li>
<li>Forum-software Admin notification emails,</li>
<li>Support software user and admin notification emails</li>
<li>Tell-a-friend emails</li>
<li>Viral-inviter type emails</li>
<li>Emails sent through Outlook or Thunderbird where you have set the outgoing SMTP server to be your web site&#8217;s SMTP server</li>
<li>Emails sent by others using the same SMTP server to send out emails-  like your business partners, employees, etc</li>
<li>DAP User welcome emails, Payment notification emails, Forgot password emails, Autoresponder emails, Broadcast emails, etc</li>
</ul>
<p>So do you see how quickly you can go over that hourly limit of 300 emails per hour?</p>
<p>But here comes the worst part&#8230;</p>
<p>Once you go over that limit, any emails that are actually sent by you or the scripts running on your site, will not actually result in any kind of error. The mail server will respond by saying that the email(s) has been sent successfully, but in reality, on the backend, it quietly &#8220;snuffs out&#8221; the email. Which means, it doesn&#8217;t go anywhere &#8211; just gets sent to a &#8220;blackhole&#8221;. So you keep thinking that you sent out the email. DAP keeps thinking it has sent out the email. But in reality, the emails never actually get sent.</p>
<p>This is the same as you actually putting your letter into the mailbox at the Post Office. But then, imagine this: The postal worker who comes to pick up your mail, quietly goes to the back of the post office and dumps it all into one giant trash can, and destroys all of the mail. So you&#8217;re thinking you actually mailed out that important check to pay your utility bill. But the utility company never gets your check, and they slam you with a late fee.</p>
<h3>Possible Solutions</h3>
<p>1) DAP + Aweber (most expensive, most reliable)</p>
<p>2) DAP + 3rd party SMTP service provider (AuthSMTP.com or SMTP.com) (less expensive than Aweber, slightly less reliable too)</p>
<p>3) DAP + Good web host (cheapest option, but can have mixed results &#8211; all depends on your host).</p>
<p>You could always use DAP and external SMTP service provider  like AuthSMTP.com or SMTP.com to send out bulk mail through DAP while  totally bypassing your web host&#8217;s email system. This is probably the  next best thing to using a service like Aweber.</p>
<p>And if you can&#8217;t afford even that, then simply use DAP on a good web  host. We ourselves use just DAP and <a href="http://dream-host.biz" target="_blank">Dreamhost</a>&#8216;s email  servers to send out emails to all of our users.</p>
<p>And DAP also has  built-in job queues to schedule outgoing emails while also making sure  that you don&#8217;t exceed your web host&#8217;s hourly email sending limits  (dreamhost&#8217;s limit is 300 emails/hour, I think). We use multiple SMTP  servers from our own other web sites, all combined to be able to send a  few thousand emails per hour.</p>
<p>But even with a lot of planning, it is easy to go over the hourly limit.</p>
<p>So the next time you see in your Job Queue that emails were sent out successfully, but the recipient never received it, here are some things to check:</p>
<p>1) It landed in your recipient&#8217;s junk/spam folder. Ask them to whitelist or add your email address to their contacts list.</p>
<p>2) You have overshot the limit, so you would have to actually send out the email again.</p>
<p>3) Try to send out broadcasts during a low-traffic time &#8211; say like later in the night &#8211; when you&#8217;re not actively sending out emails, and using up precious email counts from that hourly quota.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/troubleshooting-email-delivery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>DAP vs Aweber</title>
		<link>http://www.digitalaccesspass.com/doc/dap-vs-aweber/</link>
		<comments>http://www.digitalaccesspass.com/doc/dap-vs-aweber/#comments</comments>
		<pubDate>Fri, 21 May 2010 02:22:52 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Aweber]]></category>
		<category><![CDATA[Broadcasts]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Email Resources]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=405</guid>
		<description><![CDATA[(Or&#8230; &#8220;DAP vs MailChimp&#8221;, &#8220;DAP vs. GetResponse&#8221;, &#8230;. &#8220;DAP vs 3rd-Party-List-Service&#8221;) We often get asked why use Aweber (or other third-party list service) when DAP itself is an autoresponder. So here&#8217;s a brief overview of when and why it makes sense to use DAP or Aweber. Why Aweber DAP is not an email service like [...]]]></description>
			<content:encoded><![CDATA[<h3>(Or&#8230; &#8220;DAP vs MailChimp&#8221;, &#8220;DAP vs. GetResponse&#8221;, &#8230;. &#8220;DAP vs 3rd-Party-List-Service&#8221;)</h3>
<p>We often get asked why use Aweber (or other third-party list service) when DAP itself is an autoresponder. So here&#8217;s a brief overview of when and why it makes sense to use DAP or Aweber.</p>
<h3>Why Aweber</h3>
<p>DAP is not an email service like <a href="http://www.aweber.com/?224146" target="_blank">Aweber</a>.</p>
<p>DAP is just a tool &#8211; like Outlook or Thunderbird &#8211; that simply sends out email using your web host&#8217;s email server.</p>
<p>If your inexpensive <em>shared </em>web host is hosting a large number of sites on one server, and one of them sends out spam (or mistakenly gets flagged for spam), that will put the email deliverability of every web site on that server, in jeopardy, because your site now shares the same IP address as that of an &#8220;alleged&#8221; spammer.</p>
<p>So your emails could get sent to junk/spam folder by Gmail and Yahoo. Or worse, they just totally disappear into the ether. Some customers won&#8217;t get your emails. This won&#8217;t happen with Aweber (for the most part).</p>
<p>Aweber (and other premier email service providers) have staff on hand just for this purpose. Their core business is about email deliverability. They spend a lot of time, money and resources dealing with regular ISP&#8217;s (like AOL and SBC) to make sure their lists &#8211; and their reputation &#8211; remain clean. Which is also probably why they shut down large lists without much of a warning to you, and do other similar crazy stuff.</p>
<p>I guess it works for them &#8211; and the other Aweber users, because when you send out an email through your Aweber list, it almost always gets there in your recipient&#8217;s inbox. Which is very cool. And which is why they also charge so much for their service.</p>
<p>But if you can&#8217;t afford their high fees, then you can of course use DAP&#8217;s built-in email autoresponder, whose deliverability is only as good as your host&#8217;s deliverability.</p>
<p>Of course, you could use DAP and external SMTP service provider like Fusemail.com or <a href="http://authsmtp.com" target="_blank">AuthSMTP.com</a> (which we use ourselves) to send out bulk mail through DAP while totally bypassing your web host&#8217;s email system.</p>
<p>And if you can&#8217;t afford even that, then simply use DAP on a <a href="http://www.digitalaccesspass.com/doc/dap-certified-web-hosts/" target="_blank">decent web host</a>. We ourselves use just DAP and AuthSMTP.com to send out emails to all of our users. DAP also has built-in job queues to schedule outgoing emails while also making sure that you don&#8217;t exceed your web host&#8217;s hourly email sending limits (most web hosts limit you to 300 outgoing emails/hour). We also use multiple SMTP servers from our own other lesser-used web sites, all combined to be able to send thousands of emails an hour.</p>
<p>When it comes to features, here&#8217;s what DAP does *not* have that more expensive services like Aweber and GetResponse provide.</p>
<h3>Advantage: DAP</h3>
<ul>
<li>It&#8217;s FREE! You don&#8217;t pay <em>anything</em> to send out thousands of emails and have a list with tens of thousands of members. The Autoresponder &amp; Broadcast features are built right into the core DAP software.</li>
<li>Unlimited Autoresponders</li>
<li>Unlimited emails for free (no limit on how large your list can grow &#8211; so practically free, since you&#8217;ve already paid for DAP)</li>
<li>Add same email to multiple Autoresponders (DAP special)</li>
<li>Email throttling included, so as to not exceed your web host&#8217;s hourly email sending limits</li>
<li>Ability to merge member data &#8211; like password &#8211; into emails (DAP only &#8211; you can&#8217;t do this if you use a 3rd party list service)</li>
</ul>
<h3>Advantage: Aweber and the others</h3>
<ul>
<li>Costs several hundred dollars a year (see <a title="Aweber Pricing" href="http://www.aweber.com/?224146" target="_blank">Aweber.com</a> &#8211; it could cost you about $794 a year &#8211; based on an annual fee of $194/year + another $600/year for maintaining a list size of just 5,000 subscribers)</li>
<li>Ability to track open rates and click-through rates (coming in a future version in DAP)</li>
<li>Ability to automatically send out your newly published blog posts as a broadcast (coming in a future version in DAP)</li>
<li>DAP has no &#8220;Pretty Form&#8221; generators like Aweber &amp; Getresponse (coming in a future version)</li>
</ul>
<p>So given a choice, here&#8217;s what we recommend, in the order listed below:</p>
<p>1) <strong>DAP + 3rd Party List Service like <a title="AuthSMTP.com" href="http://authsmtp.com" target="_blank">AuthSMTP.com</a></strong>: Best option that we use ourselves</p>
<p>2) <strong>DAP + Aweber</strong>: If you already have an Aweber account, then this is a great option, especially if you want advanced email analytics that DAP itself doesn&#8217;t offer (yet).</p>
<p>3) <strong>DAP + Your Web Host</strong>: Very usable and workable option as long as you are hosting with a <a title="Recommended Web Hosts" href="http://DigitalAccessPass.com/documentation/?page=/doc/dap-certified-web-hosts/" target="_blank">decent web host</a>.</p>
<p>Feel free to comment below if you have any questions.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/dap-vs-aweber/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

