使用php通过联系表单发送邮件

时间:2016-01-30 07:08:14

标签: php forms email

我有这个功能,经过一些研究后,我仍然无法找到为什么这不起作用 我是PHP新手,想要一些帮助。谢谢。

  

sendemail.php

<?php
    header('Content-type: application/json');
    $status = array(
        'type'=>'success',
        'message'=>'Mail Sent. Thank you , we will contact you shortly. '
    );

    $name = @trim(stripslashes($_POST['name'])); 
    $email = @trim(stripslashes($_POST['email'])); 
    $subject = @trim(stripslashes($_POST['subject'])); 
    $message = @trim(stripslashes($_POST['message'])); 

    $email_from = $email;
    $email_to = 'help@addonevents.in';//replace with your email

    $body = 'Name: ' . $name . "\n\n" . 'Email: ' . $email . "\n\n" . 'Subject: ' . $subject . "\n\n" . 'Message: ' . $message;

    mail($email_to, $subject, $body, 'From: <'.$email_from.'>');
    echo json_encode($status);
    die;
  

我的表格

<form name="contact-form" method="POST" action="sendemail.php">
                <label>Name *</label>
               <input type="text" name="name" required="required">
                <label>Email *</label>
                <input type="email" name="email" required="required">
                <label>Phone</label>
                <input type="number">
                 <label>Subject *</label>
                <input type="text" name="subject" required="required">
                 <label>Message *</label>
                 <textarea name="message"  required="required" rows="8"></textarea>
                 <button type="submit" name="submit" required="required">Submit Message</button>
</form> 

任何人都可以帮忙吗?我收到了成功消息,但没有邮件到我的收件箱 谢谢。

1 个答案:

答案 0 :(得分:1)

据我所知,几乎没有人使用PHP的mail功能专业地发送电子邮件。关于该功能的official documentation即表示:

  

值得注意的是mail()函数不适合更大的   循环中的电子邮件量。此功能可打开和关闭SMTP   每个电子邮件的套接字,效率不高。

我使用的是PHPMailer,它非常易于设置和使用。我认为它是PHP中最受欢迎的邮件库。你可以得到它here

PHPMailer的文档很好地描述了mail函数的错误。

  

许多PHP开发人员在其代码中使用电子邮件。唯一的PHP功能   支持这个是mail()函数。但事实并非如此   为使用流行功能提供任何帮助   基于HTML的电子邮件和附件。

     

正确格式化电子邮件非常困难。有无数   重叠的RFC,需要严格遵守可怕的复杂   格式和编码规则 - 您绝大多数代码   在线查找直接使用mail()函数的方法很简单   错误!如果你不使用,请不要自己动手做   PHPMailer,你应该有许多其他优秀的库   滚动自己之前看一下 - 试试SwiftMailer,Zend_Mail,   eZcomponents等。

这是一个关于如何使用PHPMailer的小型(官方)示例:

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

//$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'user@example.com';                 // SMTP username
$mail->Password = 'secret';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587;                                    // TCP port to connect to

$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('joe@example.net', 'Joe User');     // Add a recipient
$mail->addAddress('ellen@example.com');               // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

所以不要重新发明轮子,并使用经过验证的可靠库来完成它。