mail script in php

Posted by Piyush on Stack Overflow See other posts from Stack Overflow or by Piyush
Published on 2010-05-20T05:38:19Z Indexed on 2010/05/20 6:20 UTC
Read the original article Hit count: 337

Filed under:
|

I am hosting my web application(pnpmkt.com) from GODADDY.com they have given me some email account like [email protected]. I want to send welcome message to new user's to their mail account in other mail servers like google, yahoo.for example, my mail function is-

<?php

$address = "[email protected]";
$Subject = "PNP Solutions";
$body = "Welcome to PNP";
$mailsend = mail("$address", "$Subject", "$body.");
print("$mailsend");
?>

what other configurations are required?Any path name or server name??

© Stack Overflow or respective owner

Related posts about php

Related posts about email