繁体   English   中英

在php中的html格式电子邮件中出现问题

[英]Trouble in html formatted email in php

我正在向其中一位用户发送批准/不批准邮件。在该电子邮件中,我想显示一个按钮,以便当用户单击该按钮时,可以批准或拒绝该请求。 但是他们的问题来了,收到邮件后我看不到邮件中的按钮。 代码如下。 请帮我。

             $to = $email;
             $subject = "Payment Confirmation";
             $headers = "MIME-Version: 1.0\n";
             $headers .= "Content-Type: text/html; charset=iso-8859-1\n";
             $headers .= "From: $email" . "\r\n" .
            "Reply-To: $email" . "\r\n" .
            'X-Mailer: PHP/' . phpversion();
            $message = '<html><head><!-- Latest compiled and minified CSS - 
           ->
         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

    <!-- Optional theme -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

     <!-- Latest compiled and minified JavaScript -->
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
    </head><body>';
     $message .= '<h1 CONFIRMATION EMAIL</h1>';
    $message .= '<p> <?php echo($name) ?> has reuqested payment. Kindly approve or 
                disapprove the requets</p>';
               $message .='<button class="btn btn-success" type="button"> <a 
              href="approveR.php"></a>APPROVE</button>';
             $message .= '</body></html>';

      mail($to,$subject,$message,$headers);

使用此代码:

<?php
$to = $email;
$subject = "Payment Confirmation";
$headers = "From: " . $email . "\r\n";
$headers .= "Reply-To: ". $email . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

$message = '<html><head><!-- Latest compiled and minified CSS -->
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

            <!-- Optional theme -->
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

            <!-- Latest compiled and minified JavaScript -->
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
            </head><body>';
            $message .= '<h1 CONFIRMATION EMAIL</h1>';
            $message .= '<p> '. $name .' has reuqested payment. Kindly approve or 
            disapprove the requets</p>';
            $message .='<button class="btn btn-success" type="button"> <a 
            href="approveR.php"></a>APPROVE</button>';
$message .= '</body></html>';

mail($to, $subject, $message, $headers);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM