0

連絡先が機能しない理由がわかりません。私のメールアドレスにデータを送信および送信しません。ライブでチェックしてください - http://www.arif-khan.net/project/chuck/ContactUs.html

HTMLコードをチェックしてください-

<form id="contact-form" action="sendmail.php" method="POST" >                       
                    <div class="success">Contact form submitted!<br>
                        <strong>We will be in touch soon.</strong>
                    </div>                      
                    <fieldset>
                        <label class="name">
                            <input name="name" type="text" value="Name:">
                            <span class="error">*This is not a valid name.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <label class="email">
                            <input name="email" type="email" value="Email:">
                            <span class="error">*This is not a valid email address.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <label class="phone">
                            <input name="contact" type="tel" value="Phone:">
                            <span class="error">*This is not a valid phone number.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <label class="message">
                            <textarea name="message">Message:</textarea>
                            <span class="error">*The message is too short.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <div class="form_buttons">
                            <input type="submit" class="btn-1" value="submit" style="border:0px;">
                            <!--a href="#" id="submit" class="btn-1 submit" data-type="submit">submit</a-->
                            <a href="#" class="btn-1" data-type="reset">Clear</a>
                            <input id="contact-form" type="hidden" name="contact-form" type="submit"/>
                        </div>
                    </fieldset>
                </form>         

PHPコードをチェックしてください-

<?php
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$contact = $_POST['contact'];
$to = "arifkpi@gmail.com";

$content = 'Customer Request From Pennant Staffing';

$body_message = '---------- Customer Details ---------- '."\r\n\r\n";
$body_message .= 'Name: '. $name."\r\n\r\n";
$body_message .= 'E-mail: ' . $email ."\r\n\r\n";
$body_message .= 'Contact: ' . $contact."\r\n\r\n";
$body_message .= 'Message: ' . $message."\r\n\r\n";

$headers = "From:$name<$email> \r\n"; 
$headers .= "Reply-To: $email \r\n"; 
mail($to, $content, $body_message, $headers);
?>

<script language="javascript" type="text/javascript">
window.location = 'ContactUs.html';
</script>
4

2 に答える 2

0

これを試して:

$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=UTF-8\r\n";
$headers .= "From:$name<$email> \r\n"; 
$headers .= "Reply-To: $email \r\n";
mail($to, $content, $body_message, $headers);

ローカルホストでメールをチェックするには、「Test Mail Server Tool」を使用できます

于 2013-10-15T11:15:45.267 に答える
0

このプロジェクトに使用する php.ini ファイルに移動して、

[mail function]

SMTP サーバーの変数を設定します。

于 2013-10-15T11:17:28.213 に答える