Please help me

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
shajuphp.nd
Forum Newbie
Posts: 1
Joined: Tue May 05, 2009 5:15 am

Please help me

Post by shajuphp.nd »

Mail coding Issue
I tried my php.ini file with host id address, But i mot able to send mail using my code. Please help me
I have mentioned my codes below here

Code: Select all

 
; For Win32 only.
SMTP = 172.68.1.10
smtp_port = 25
 
; For Win32 only.
sendmail_from = example@loacal.com
 

Code: Select all

 
<?php
$mail=mail("@example.com", "Testing", "Good Morning testing mail", "From:@yahoo.com");
If($mail)
    {
    echo "Mail was send";
    }
else
    {
    echo "Error in sending";
    }
?>
 
Please help me as soon as possible
Post Reply