0

$body =" 部分のスタイルをどのように設定すれば、受信メールが読みやすくなるのか疑問に思っていました。

タグやボディタグを追加するなど、すでにいくつかのことを試しましたが、すべてうまくいかないようです。この厄介な問題に取り組むのを手伝ってください.

よろしくお願いします。

クインシー

<?php
                    $name = $_POST['name'];
                    $email = $_POST['email'];
                    $message = $_POST['message'];
                    $from = 'From: info@epicconcepts.nl'; 
                    $to = 'info@epicconcepts.nl'; 
                    $subject = 'Contact formulier bericht';
                    $human = $_POST['human'];

                    $headers = "From: " . strip_tags($_POST['req-email']) . "\r\n";
                    $headers .= "Reply-To: ". strip_tags($_POST['req-email']) . "\r\n";
                    $headers .= "CC: quincynorbert@live.nl\r\n";
                    $headers .= "MIME-Version: 1.0\r\n";
                    $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

                    $body = "
                    New Mail $name\n $email\n \n $message";

                    if ($_POST['submit']) {
                        if ($name != '' && $email != '') {
                            if ($human == '4') {                 
                                if (mail ($to, $subject, $body, $from)) { 
                                echo '<p class="correct-message">Your message has been sent!</p>';
                            } else { 
                                echo '<p class="correct-message">Something went wrong, go back and try again!</p>'; 
                            } 
                        } else if ($_POST['submit'] && $human != '4') {
                            echo '<p class="correct-message">You answered the anti-spam question incorrectly!</p>';
                        }
                        } else {
                            echo '<p class="correct-message">You need to fill in all required fields!</p>';
                        }
                    }
                ?>
4

1 に答える 1

0

CSS スタイル (style="correct-message" など) を使用しているだけの場合、これは機能しません。次のように、本文にもスタイル定義を追加する必要があります。

<style> .correct-message{font-weight:bold; color:red;}</style>
于 2013-02-11T08:10:00.677 に答える