【问题标题】:How to collect email in form (html) and send to external email using (PHP)?如何以表单(html)收集电子邮件并使用(PHP)发送到外部电子邮件?
【发布时间】:2018-06-07 12:26:07
【问题描述】:

我对我的代码有疑问。我创建了一个用于收集电子邮件的表单。 enter image description here

在我的 html 中,我使用了 <form> 标签来引用 signup.php

HTML:(表单部分)

<form method="post" action="php/signup.php" name="cform" id="cform">
    <div class="form-row">
    <div class="col-12 col-md-9 mb-2 mb-md-0">
        <input name="email" id="email" type="text" class="form-control form-control-lg" placeholder="Enter your email...">
    </div>
       <div class="col-12 col-md-3">
         <button type="submit" class="btn btn-block btn-lg btn-primary">Sign up!</button>
       </div>
     </div>
</form>

在我的 signup.php 中,我尝试了许多不同的方法来将其发送到我的电子邮件,但它不会将电子邮件从表单发送到我的带有主题的电子邮件。我相信我遵循了 PHP 的邮件类 *mail(sendtoemail,subject,body,headers) 格式。谢谢!!!

PHP (php/signup.php)

<?php

    if(!$_POST) exit;
    // Email address verification, do not edit.
    function isEmail($email) {
        return(preg_match("/^[-_.[:alnum:]]+@((([[:alnum:]]|[[:alnum:]][[:alnum:]-]*[[:alnum:]])\.)+(ad|ae|aero|af|ag|ai|al|am|an|ao|aq|ar|arpa|as|at|au|aw|az|ba|bb|bd|be|bf|bg|bh|bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|com|coop|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|in|info|int|io|iq|ir|is|it|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|mg|mh|mil|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|museum|mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nt|nu|nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|pro|ps|pt|pw|py|qa|re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)$|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5])\.){3}([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$/i",$email));
    }
    if (!defined("PHP_EOL")) define("PHP_EOL", "\r\n");
    $email = $_POST['email']
      if (trim($email) == '') {
        echo 'Please enter a valid email address.';
        exit();
    } else (!isEmail($email)) {
        echo 'You have entered an invalid e-mail address. Please try again.';
        exit();
    }

    $address = "p****@*******tech.mx";
    $to_email = "p****@*******tech.mx";


    $e_body = "You have been contacted by $email"  . PHP_EOL . PHP_EOL;
    $e_reply = "You can contact them via $email";
    $message = wordwrap ($e_body . $e_reply, 70);

    $headers = "From: $address" . PHP_EOL;
    $headers .= "Reply-To: $email" . PHP_EOL;
    $headers .= "MIME-Version: 1.0" . PHP_EOL;
    $headers .= "Content-type: text/plain; charset=utf-8" . PHP_EOL;
    $headers .= "Content-Transfer-Encoding: quoted-printable" . PHP_EOL;


    if(mail($to_email, $e_subject, $message, $headers)) {
        echo "<fieldset>";
        echo "<div id='success_page'>";
        echo "<h3>Email Sent Successfully.</h3>";
        echo "<p>Thank you <strong>$name</strong>, your message has been submitted to Renovatio.</p>";
        echo "</div>";
        echo "</fieldset>";
        } 

        else {
        echo 'ERROR!';
    }
    ?>

【问题讨论】:

  • 你在哪里定义$e_subject?
  • 有时,根据您拥有的主机服务,只有经过身份验证的帐户才能发送电子邮件,从而防止垃圾邮件
  • 很有可能@Gabriel Souto 是正确的。您有权访问日志文件吗?

标签: php html


【解决方案1】:

首先,您需要为 e_subject 赋值,因为根据您的代码,e_subject 是空的。然后请记住,有时根据您拥有的主机服务,只有经过身份验证的帐户才能发送电子邮件,从而防止垃圾邮件。考虑使用像PHPMailer这样的库

【讨论】:

    猜你喜欢
    • 2018-01-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-08-07
    • 2012-01-04
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多