Sending mail in php

岁酱吖の 提交于 2019-11-28 08:38:23

问题


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 ..

  <!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 = "abhisheks.net@gmail.com";
            $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="Send Mail" /></td>

 </tr>
 </table>
 </div>
 </form>
</body>
</html>

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"

回答1:


The PHP mail() Function

Basic Example:

<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>



回答2:


Naveed's answer is all that is required for sending a basic email.

For reference:

PHP's Mail function - http://php.net/manual/en/function.mail.php

Commonly used classes providing additional functionality:

PHPMailer - http://phpmailer.worxware.com/

Zend_Mail - http://framework.zend.com/manual/en/zend.mail.html




回答3:


See a good example for sending emails here

http://thinkspacetechnologies.com/blog/sending-mails-via-php-script-2/




回答4:


<?php
$message="hi";
$to="to@exmaple.com";
$sub='Subject of the Mail';
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= "From:from@example.com\r\n";
mail($to,$sub,$message,$headers); 
?>

simple Mail sending in php

this will accept the html tags and perform accordingly




回答5:


Beware that while the PHP mail() function is pretty simple and convenient to use, the computer OS must be able to send mail by itself.

You have to check the return value of mail() (boolean, true if mail was accepted for delivery).

  $result = mail( ... );

If the $result variable is false, you have to check your computer mail configuration/implementation.

If it is true, and the mail is not sent, you have to check the computer mail logs.



来源:https://stackoverflow.com/questions/3714558/sending-mail-in-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!