in reply to Re: Re: Re: Re: form recipients
in thread form recipients
The To: line needs to have commas separating the addresses instead of spaces.if ($FORM{'chkno'}) { $recipients .= " foo@example.com"; } <code> Then, the command will look like: <code> |/usr/lib/sendmail yogibear@test.edu foo@example.com
Finally, you need to add a blank line between the end of the headers and the start of the HTML.To: yogibear@test.edu, foo@example.com
print MAIL "Content-Transfer-Encoding: 7bit\n"; print "\n"; print MAIL "<html><head>\n";
|
|---|