<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: AutoReply E-Mails?</title>
	<link>http://ask.metafilter.com/24093/AutoReply-EMails/</link>
	<description>Comments on Ask MetaFilter post AutoReply E-Mails?</description>
	<pubDate>Thu, 15 Sep 2005 10:40:08 -0800</pubDate>
	<lastBuildDate>Thu, 15 Sep 2005 10:40:08 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: AutoReply E-Mails?</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails</link>	
		<description>AutoReply E-Mails:  with what software do I do this, and what does it $? &lt;br /&gt;&lt;br /&gt; To promote my little consulting biz, I am interested in setting up Auto-reply e-mails; you know, &quot;send an e-mail with &quot;WORD&quot; in the subject line, and x documentation will be sent to you (possibly in the body of the e-mail; possibly as an attachment).&quot;  A primer, please.  By the way, I&apos;m using Mac OS X.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2005:site.24093</guid>
		<pubDate>Thu, 15 Sep 2005 10:36:29 -0800</pubDate>
		<dc:creator>ParisParamus</dc:creator>
		
			<category>Automated</category>
		
			<category>E-mail</category>
		
			<category>autoreply</category>
		
	</item> <item>
		<title>By: psychobum</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails#382876</link>	
		<description>you can do it for free with a yahoo email, just set the vacation auto responder on in the prefrences, however all emails recieved will get an automatic responce, it won&apos;t filter the subject headers</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24093-382876</guid>
		<pubDate>Thu, 15 Sep 2005 10:40:08 -0800</pubDate>
		<dc:creator>psychobum</dc:creator>
	</item><item>
		<title>By: letterneversent</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails#382897</link>	
		<description>Most webservers using cpanel have this functionality. You can create unlimited addresses with which to do this if you own your own domain name.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24093-382897</guid>
		<pubDate>Thu, 15 Sep 2005 10:59:05 -0800</pubDate>
		<dc:creator>letterneversent</dc:creator>
	</item><item>
		<title>By: jozxyqk</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails#382900</link>	
		<description>OS/X is Unixy, isn&apos;t it?  Would procmail work here?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24093-382900</guid>
		<pubDate>Thu, 15 Sep 2005 11:02:58 -0800</pubDate>
		<dc:creator>jozxyqk</dc:creator>
	</item><item>
		<title>By: phearlez</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails#382910</link>	
		<description>I use phpwebhosting.com for my hosting and their mail management tools include options for setting up auto-responders. &lt;br&gt;
&lt;br&gt;
Do you have a dedicated domain name? If not, why not? Nothing more ghetto looking that someone with a gmail or hotmail account address for a business I&apos;m supposed to take seriously. I know it&apos;s an unfair generalization but it&apos;s an immediate reaction for me.&lt;br&gt;
&lt;br&gt;
You should be able to find a number of hosting companies that will provide autoresponders. Having your own domain allows you an infinite number of email addresses and therefor an infinite number of autoresponders.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24093-382910</guid>
		<pubDate>Thu, 15 Sep 2005 11:10:42 -0800</pubDate>
		<dc:creator>phearlez</dc:creator>
	</item><item>
		<title>By: mkultra</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails#382955</link>	
		<description>I&apos;m thinking there &lt;i&gt;has&lt;/i&gt; to be some way to do this in Apple Mail, using a rule with a &quot;Run Script&quot; as an action. The trick, though, is passing the relevant info as a parameter...&lt;br&gt;
&lt;br&gt;
But, yeah, get a domain.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24093-382955</guid>
		<pubDate>Thu, 15 Sep 2005 11:45:47 -0800</pubDate>
		<dc:creator>mkultra</dc:creator>
	</item><item>
		<title>By: mkultra</title>
		<link>http://ask.metafilter.com/24093/AutoReply-EMails#382972</link>	
		<description>Ah, come to think of it, you can do it this way:&lt;br&gt;
&lt;br&gt;
- Add a rule to Apple Mail that says &quot;If SUBJECT contains [your keyword] then Set Color to [some mail color you never use], Run Script [Info Mailer Script], Set Color to [some other mail color you never use].&quot;&lt;br&gt;
&lt;br&gt;
&quot;Info Mailer Script&quot; is an Applescript that does the following (my syntax is going to be off, but the gist should be correct):&lt;br&gt;
&lt;br&gt;
tell application &quot;Mail&quot;&lt;br&gt;
   set flaggedMail to (every message in inbox whose subject contains &quot;[your keyword]&quot; and whose color is [first mail color set]&quot;&lt;br&gt;
   repeat with aMail in flaggedMail&lt;br&gt;
      set aRecipient to sender of aMail&lt;br&gt;
      -- create your email message here, with whatever attachments, send to aRecipient&lt;br&gt;
   end repeat&lt;br&gt;
end&lt;br&gt;
&lt;br&gt;
The one advantage to this is that you know exactly who you sent something to (via the second color), and if the script ever fails, Apple Mail will leave the messages in a sort of &quot;pending&quot; bin (via the first color) that the script can later pick up.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24093-382972</guid>
		<pubDate>Thu, 15 Sep 2005 11:59:54 -0800</pubDate>
		<dc:creator>mkultra</dc:creator>
	</item>
	</channel>
</rss>
