RE: [PHP] Send Email to Mobile

2007-02-01 Thread Peter Lauri
This kind of hassle you can avoid if you use PHPMailer that you can find at
http://phpmailer.sourceforge.net

Best regards,
Peter Lauri

www.dwsasia.com - company web site
www.lauri.se - personal web site
www.carbonfree.org.uk - become Carbon Free


-Original Message-
From: Marcelo Ferrufino Murillo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 01, 2007 6:17 PM
To: php-general@lists.php.net
Subject: [PHP] Send Email to Mobile

Hi guys, I have a script that send emails to mobiles:

?php
$subject=$_REQUEST[sb];
$nmobile=trim($_REQUEST[nmobile]);
$message=$_REQUEST[message];
$header=From: [EMAIL PROTECTED];

//Bolivia providers
switch($nmobile[1]){
 case 0: $company=@viva-gsm.com; break;
 case 1: $company=@entelmovil.com.bo;break;
 case 2:
 case 3: $company=@movil.com.bo; break;
 case 6:
 case 7: $company=@tigo.com.bo;break;
 }
$number=591.$nmobile.$company;
if( @mail($number,$subject,$message,$header))
echo Message sent;
else echo error;
?

And this is the message in a mobile:  [EMAIL PROTECTED] 


I don´t know why appear the address [EMAIL PROTECTED] the address must
be: [EMAIL PROTECTED], could you help me please, thank you

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Send Email to Mobile

2007-02-01 Thread Richard Lynch
Add a Reply-to: field on your headers.

http://php.net/mail

Read about the fifth argument.

On Thu, February 1, 2007 10:17 am, Marcelo Ferrufino Murillo wrote:
 Hi guys, I have a script that send emails to mobiles:

 ?php
 $subject=$_REQUEST[sb];
 $nmobile=trim($_REQUEST[nmobile]);
 $message=$_REQUEST[message];
 $header=From: [EMAIL PROTECTED];

 //Bolivia providers
 switch($nmobile[1]){
  case 0: $company=@viva-gsm.com; break;
  case 1: $company=@entelmovil.com.bo;break;
  case 2:
  case 3: $company=@movil.com.bo; break;
  case 6:
  case 7: $company=@tigo.com.bo;break;
  }
 $number=591.$nmobile.$company;
 if( @mail($number,$subject,$message,$header))
 echo Message sent;
 else echo error;
 ?

 And this is the message in a mobile:  [EMAIL PROTECTED]
 


 I don´t know why appear the address [EMAIL PROTECTED] the address
 must
 be: [EMAIL PROTECTED], could you help me please, thank you



-- 
Some people have a gift link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php