Sending mail in php

mitcimatish

New Member
Here i am new to PHP, i want to send the mail and my application is running on go daddy sahre hosting so please tell me hows can i achieve it . thanks to all.i got the response from you guys and i tried but there is some problem . this is my code ..\[code\] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Send Mail</title></head><body><?php if( isset($_POST['email']) && isset($_POST['subject']) && isset($_POST['msg']) ) { $to = $_POST['email']; $subject = $_POST['subject']; $msg = $_POST['msg']; $from = "[email protected]"; $headers = "From: $from"; mail($to,$subject,$msg,$headers); echo "Mail Send"; } ?> <form action="sendMail.php" method="post"> <div> <table style="width:100%;"> <tr> <td>Email:</td> <td><input type="text" name="email" /></td> <td>Subject:</td> <td><input type="text" name="subject" /></td> </tr> <tr> <td>Message</td> <td><input type="text" name="msg" /></td> <td colspan="2"> <input type="submit" value="http://stackoverflow.com/questions/3714558/Send Mail" /></td> </tr> </table> </div> </form></body></html>\[/code\]And after running this page i got the error"Warning: mail() [function.mail]: SMTP server response: 554 The message was rejected because it contains prohibited virus or spam content in D:\Hosting\5676400\html\myPhp\temp\admin\sendMail.php on line 17"
 
Back
Top