<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1000829" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1000829</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/autoresponder#comment-1003557</link>
    <description> &lt;p&gt;Try somthing like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;code:&lt;/p&gt;
&lt;pre&gt;
$mailprog = &#039;/usr/lib/sendmail&#039; ;

foreach $email (@emailarray)
{
open (MAIL, &quot;|$mailprog -t&quot;);
print MAIL &quot;To: $email\n&quot;;
print MAIL &quot;Reply-to: your\@email.com\n&quot;;
print MAIL &quot;From: your\@email.com\n&quot;;
print MAIL &quot;Subject: $subject\n&quot;;
print MAIL &quot;\n\n&quot;;
print MAIL &quot;$main\n&quot; ;
print MAIL &quot;\n\n&quot;;
close (MAIL);
} # End Foreach $email

[/code]

That would email all the emails in @emailarray. The Subject would be in $subject, and content would be in $main.  You do need  SendMail installed on the system.

hope this helped.



------------------
&lt;strong&gt;You blink about 84,000,000 times per year.&lt;/strong&gt; &lt;/pre&gt;&lt;/blockquote&gt;</description>
     <pubDate>Sun, 21 Nov 1999 14:54:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1003557 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
