Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

forwarding with Mail::Mailer 'sendmail';

Status
Not open for further replies.

bretttt

Programmer
Jul 23, 2002
74
0
0
US
Hello I have
my $m = new Mail::Mailer 'sendmail';

$m->open({
'Subject' => $subject,
'To' => $to,
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/html; charset=us-ascii',
'Content-Transfer-Encoding' =>'7bit'
}) ;
$winhtml=`cat Orders/$invoice`;
print $m "$winhtml\n";

$m->close;

How do i add a forward address thanks
 
'Reply-To' => $replyto,

Forward simply change the $to to a list of email addresses I would have thought

HTH
--Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top