Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-25-2008, 06:02 AM   PM User | #1
swethak
New Coder

 
Join Date: Jul 2008
Posts: 57
Thanks: 0
Thanked 0 Times in 0 Posts
swethak is an unknown quantity at this point
mail function didn't work in my local system

hi,

i used mail function in my local system.In that i didn't get any errors and mail didn't receive.And in my php.ini consists

[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25

; For Win32 only.
sendmail_from = me@example.com

at the time of installation of php it asks the smtp and from address.And i give as smtp=localhost and from address as me@example.com

And my php code is

PHP Code:
<?php
$to 
"sravanik@eminosoft.com";
$subject "Test mail";
$message "Hello! This is a simple email message.";
$from "me@example.com";
$headers "From: $from";
mail($to,$subject,$message,$headers);
echo 
"Mail Sent.";
?>
Anybody plz tell that what's the solution for that.plz help me.
swethak is offline   Reply With Quote
Old 07-25-2008, 07:29 AM   PM User | #2
_Aerospace_Eng_
Supreme Master coder!


 
_Aerospace_Eng_'s Avatar
 
Join Date: Dec 2004
Location: In a place far, far away...
Posts: 19,293
Thanks: 2
Thanked 1,044 Times in 1,020 Posts
_Aerospace_Eng_ is a glorious beacon of light_Aerospace_Eng_ is a glorious beacon of light_Aerospace_Eng_ is a glorious beacon of light_Aerospace_Eng_ is a glorious beacon of light_Aerospace_Eng_ is a glorious beacon of light
You need your own smtp server to send mail from your local system. Localhost won't work.
__________________
||||If you are getting paid to do a job, don't ask for help on it!||||
_Aerospace_Eng_ is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:14 AM.


Advertisement
Log in to turn off these ads.