Sending to 2 email addresses using the mail function?

This is a discussion on Sending to 2 email addresses using the mail function? within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hello, Is it possible to send form data to 2 email addresses simultaneously using the mail function? Or is there ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 03-31-2005
Chris
 
Posts: n/a
Default Sending to 2 email addresses using the mail function?

Hello,

Is it possible to send form data to 2 email addresses simultaneously
using the mail function? Or is there another PHP function for that?

Thank you for your help.

Cheers

Chris
Reply With Quote
  #2 (permalink)  
Old 03-31-2005
Tex John
 
Posts: n/a
Default Re: Sending to 2 email addresses using the mail function?


"Chris" <teddymaflu_nospam@fastmail.fm> wrote in message
news:424c5be4$0$7644$626a14ce@news.free.fr...
> Hello,
>
> Is it possible to send form data to 2 email addresses simultaneously
> using the mail function? Or is there another PHP function for that?
>
> Thank you for your help.
>
> Cheers
>
> Chris


$mail_to = "webmaster@isp.com,luke@isp.com,sparks@isp.com ";
$mail_subj = "New ISP Signup";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: webmaster@isp.com\r\n";
$mail_body = "<b>Payment</b> Made By <snip>";

mail($mail_to,$mail_subj,$mail_body,$headers);

or alternatively

$headers .= "BCC: admin@$DomainName\r\n";
$headers .= "CC: $current_email\r\n";

Or a mixture of them all!

hth,
John T. Jarrett


Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 08:47 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0