<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Batch Mailing in Rails</title>
	<atom:link href="http://www.anup.info/2008/04/15/batch-mailing-in-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anup.info/2008/04/15/batch-mailing-in-rails/</link>
	<description>Ruby on Rails Developer, London</description>
	<pubDate>Thu, 29 Jul 2010 12:56:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Will</title>
		<link>http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-72483</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Fri, 19 Mar 2010 16:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-72483</guid>
		<description>Jack, You seem to spam every single site talking about rails mailing lists.  You might want to mention that your solution is free only for 500 messages per day.  I would imagine most sites using rails have newsletters far greater than 500 users.  At least mention that before you tell everyone you have an end all solution.</description>
		<content:encoded><![CDATA[<p>Jack, You seem to spam every single site talking about rails mailing lists.  You might want to mention that your solution is free only for 500 messages per day.  I would imagine most sites using rails have newsletters far greater than 500 users.  At least mention that before you tell everyone you have an end all solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-69055</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Sat, 28 Nov 2009 17:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-69055</guid>
		<description>Here's a good alternative to ar_mailer:
http://www.postageapp.com
It's easy to start and you don't have to deal with background jobs and 
queues plus you have some cool reporting tools - great to track what 
actually got sent.



Here's an introduction:

http://blog.postageapp.com/2009/11/easy-mass-mailing-for-ruby-on-rails/


And here's a sample app to help get started:

http://blog.postageapp.com/2009/11/rails-example-app/</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a good alternative to ar_mailer:<br />
<a href="http://www.postageapp.com" rel="nofollow">http://www.postageapp.com</a><br />
It&#8217;s easy to start and you don&#8217;t have to deal with background jobs and<br />
queues plus you have some cool reporting tools - great to track what<br />
actually got sent.</p>
<p>Here&#8217;s an introduction:</p>
<p><a href="http://blog.postageapp.com/2009/11/easy-mass-mailing-for-ruby-on-rails/" rel="nofollow">http://blog.postageapp.com/2009/11/easy-mass-mailing-for-ruby-on-rails/</a></p>
<p>And here&#8217;s a sample app to help get started:</p>
<p><a href="http://blog.postageapp.com/2009/11/rails-example-app/" rel="nofollow">http://blog.postageapp.com/2009/11/rails-example-app/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daehee</title>
		<link>http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-61874</link>
		<dc:creator>Daehee</dc:creator>
		<pubDate>Mon, 08 Jun 2009 15:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-61874</guid>
		<description>David -- thanks for the SMTP settings to get AuthSMTP working with ar_mailer!</description>
		<content:encoded><![CDATA[<p>David &#8212; thanks for the SMTP settings to get AuthSMTP working with ar_mailer!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Baldwin</title>
		<link>http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-57013</link>
		<dc:creator>David Baldwin</dc:creator>
		<pubDate>Wed, 18 Mar 2009 01:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-57013</guid>
		<description>BTW - Here are my SMTP settings.  Note that I am using the most recent version of the ar_mailer gem (http://github.com/adzap/ar_mailer/)

config.action_mailer.delivery_method = :activerecord

config.action_mailer.smtp_settings = {
  :address =&#62; "mail.authsmtp.com",
  :port =&#62; 25,
  :user_name =&#62; "my_username",
  :password =&#62; "my_password",
  :domain =&#62; "localhost",
  :authentication =&#62; :login,
  :tls =&#62; false
}</description>
		<content:encoded><![CDATA[<p>BTW - Here are my SMTP settings.  Note that I am using the most recent version of the ar_mailer gem (http://github.com/adzap/ar_mailer/)</p>
<p>config.action_mailer.delivery_method = :activerecord</p>
<p>config.action_mailer.smtp_settings = {<br />
  :address =&gt; &#8220;mail.authsmtp.com&#8221;,<br />
  :port =&gt; 25,<br />
  :user_name =&gt; &#8220;my_username&#8221;,<br />
  :password =&gt; &#8220;my_password&#8221;,<br />
  :domain =&gt; &#8220;localhost&#8221;,<br />
  :authentication =&gt; :login,<br />
  :tls =&gt; false<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Baldwin</title>
		<link>http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-57012</link>
		<dc:creator>David Baldwin</dc:creator>
		<pubDate>Wed, 18 Mar 2009 01:35:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.anup.info/2008/04/15/batch-mailing-in-rails/#comment-57012</guid>
		<description>Thanks for the post.  I am currently setting up ar_mailer with authsmtp.  It is currently only working when I enable SSL on my authsmtp account.  I would rather not have that enabled as SSL messages count as double.  How do I explicitly tell smtp not to use SSL in the Rails settings?</description>
		<content:encoded><![CDATA[<p>Thanks for the post.  I am currently setting up ar_mailer with authsmtp.  It is currently only working when I enable SSL on my authsmtp account.  I would rather not have that enabled as SSL messages count as double.  How do I explicitly tell smtp not to use SSL in the Rails settings?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.472 seconds -->
