On Thu, May 11, 2006 3:16 pm, Jay Blanchard wrote:
> I am attempting to send SMS via an e-mail messageand it works!
> *phew* @sms.myserver.com
>
> Problem is that the reply to or from field on the device always shows
> [EMAIL PROTECTED] regardless of what I have set the Replay-To: or
> From: he
[snip]
$fromaddress = '[EMAIL PROTECTED]';
mail($to, $subject, $message, $headers, '-f'.$fromaddress);
[/snip]
Cool...worked like a champeene race dog! (Say it with a Southern drawl)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Jay Blanchard wrote:
$poot = ini_set("sendmail_from", '[EMAIL PROTECTED]');
$smsTo = $_POST['smsPhone'] . '@sms.myserver.com';
$to = $smsTo;
$subject = $_POST['smsSubject'];
$message = $_POST['smsMessage'];
$headers = 'From: '. $poot . "\r\n" .
'Re
On 5/11/06, Jay Blanchard <[EMAIL PROTECTED]> wrote:
[snip]
Send us some source code and we can help you out!
[/snip]
Always reply to the list and please do not top post.
$poot = ini_set("sendmail_from", '[EMAIL PROTECTED]');
$smsTo = $_POST['smsPhone'] . '@sms.myserver.com';
$to =
[snip]
Send us some source code and we can help you out!
[/snip]
Always reply to the list and please do not top post.
$poot = ini_set("sendmail_from", '[EMAIL PROTECTED]');
$smsTo = $_POST['smsPhone'] . '@sms.myserver.com';
$to = $smsTo;
$subject = $_POST['smsSubject'];
$message
5 matches
Mail list logo