Hi, I want to send emails using PHP file.
How to do this? Do I need to have an SMTP server?If so, which one do I use and how do I configure that?
I have my internet provider SMTP as smtp.comcast.net
Here is how my php.ini looks :
SMTP=smtp.comcast.net
SMTP_port=25
sendmail_from = manjirisujeet@comcast.net
Here is how my very simple email.php program looks like
<?php
mail ('manjirit@hotmail.com','hi','how r u?')
?>
It doesn't work. gives me error :
mail () "sendmail_from " not set up in php.ini or customer "From:" header missing in.....
Any suggestions how do I do this?