0

我需要一点帮助才能让我的 PHP 邮件功能正常工作。

这是我目前拥有的,在我的 php 文件的标题中:

<?php
require_once('common.php');

require_once('mailer.php');

if (isset($_POST['submitBtn']))
{
    // Get user input
    $conName  = isset($_POST['conName']) ? $_POST['conName'] : '';
    $conEmail = isset($_POST['conEmail']) ? $_POST['conEmail'] : '';
    $conPhone = isset($_POST['conPhone']) ? $_POST['conPhone'] : '';
    $conNatureof = isset($_POST['conNatureof']) ? $_POST['conNatureof'] : '';
    $conSubject = isset($_POST['conSubject']) ? $_POST['conSubject'] : '';
    $conMessage = isset($_POST['conMessage']) ? $_POST['conMessage'] : '';

    // Try to send the email
    $error = sendMail($conName,$conEmail,$conPhone,$conNatureof,$conSubject,$conMessage);
}   
?>

这目前在我的 PHP 文件的正文中:

<?php if ((!isset($_POST['submitBtn'])) || ($error != '')) {?>
 <form method="post" action="contact.php" enctype="multipart/form-data">

<p><label for="conName">Name:<span class="required">*</span></label><input name="conName" id="conName" type="text" class="input"/></p>
<p><label for="conEmail">Email:<span class="required">*</span></label><input name="conEmail" id="conEmail" type="text" class="input" /></p>
<p><label for="conPhone">Phone:</label><input name="conPhone" id="conPhone" type="text" class="input" /></p>
<p><label for="conNatureof">Nature of enquiry:<span class="required">*</span></label>
<select name="conNatureof" class="input" id="conNatureof">
  <option value="-">-- Please Select --</option>
  <option value="interested">Interested in joining</option>
  <option value="job">Job enquiry</option>
  <option value="other">Other</option>
  <option value="question">Question about membership</option>
</select></p>
<p><label for="conSubject">Subject:<span class="required">*</span></label><input name="conSubject" id="conSubject" type="text" class="input"/></p>
<p>Message:<span class="required">*</span>
<textarea name="conMessage" cols="40" rows="5" class="textarea" id="conMessage"></textarea></p>
<div class="buttonHolder">
<input class="text" type="submit" name="submitBtn" value="Submit" />
</div>
</form>
<?php } ?>

连同我的具有 sendMail 功能的 mailer.php 文件如下:

function sendMail($conName,$conEmail,$conPhone,$conNatureof,$conSubject,$conMessage)
{

//String to hold the error messages
$errorText = '';

//START VALIDATION OF USER INPUT

//Validating name
if($conName == "")
{
    $errorText = $errorText . "- Please enter a name<br />";
}



//Validating email address
//Must be a valid email address and is compulsory
if($conEmail == "")
{
    $errorText = $errorText . "- Please enter an email address<br />";
}
elseif (!filter_var($conEmail, FILTER_VALIDATE_EMAIL)) 
{
    $errorText = $errorText . "- Email address was invalid<br />";
}


//Validating enquiry type
if($conNatureof == "-")
{
    $errorText = $errorText . "- Please select your nature of enquiry<br />";
}

//Validating subject and message
if($conSubject == "")
{
    $errorText = $errorText . "- Please enter a subject<br />";
}

if($conMessage == "")
{
    $errorText = $errorText . "- Please enter a message<br />";
}


// If everything is OK, send the email
if ($errorText == '') 
{
    $to = "jademulholland@hotmail.com";
    $subject = $conSubject;
    $message = $conMessage;
    $from = $conEmail;
    $headers = "From:" . $conName;
    mail($to,$subject,$message,$headers);
}

return $errorText;
}

我知道大部分代码都不是诊断问题所必需的,尽管我认为尽可能多地给出是合适的。

非常感谢所有帮助,谢谢

4

1 回答 1

1

您正在开发带有验证的联系表。请点击链接你会得到想法否则谷歌它与验证联系表格

否则谷歌它在谷歌中尝试

于 2013-08-01T10:11:06.117 回答