0

データベースで結果をフェッチする注文コンテンツを送信したいだけです。しかし、エコーすると、phpページに表示されます。私はそれをしたくありません。ユーザーがメールを受信したときにのみコンテンツがメールに表示されるようにします。

これは私のコードです。

while($row3 = mysqli_fetch_array($result3)){
$addresses=$row3['email'];
$to = $addresses;

$subject = "Order confirmed by Home and decor";



// message
$message = '


<html>
<body>
<table width="500" height="215" border="0">
<tr>
<th width="238" height="211" scope="col"><h1 align="left">Order # 1234</h1></p></th>
<th width="10" scope="col"></th>
<th width="243" scope="col"><p><img src="file:///D|/Programs/xampp/htdocs/images/sitelogo.PNG" width="224" height="68" align="right"></p></th>
</tr>
</table>

<table width="500" height="215" border="0">
<tr>
<th width="181" height="211" scope="col"><p align="left">Ship To:</p>
<p align="left"><?=$row3['first_name']?></p>
<p align="left"><?=$row3['address_1']?></p>
<p align="left"><?=$row3['city']?></p></th>
<th width="80" scope="col"></th>
<th width="40" scope="col"></th>
<th width="181" scope="col"><p align="left"></p>
<p align="right">Bill To:</p>
<p align="right"><?=$row3['first_name']?></p>
<p align="right"><?=$row3['address_1']?></p>
<p align="right"><?=$row3['city']?></p>
</th>
</tr>
</table>

<table width="500" height="94" border="0">
<tr>
<th height="43" scope="col"><div align="left">Order Date:</div></th>
<th scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th>
<th scope="col"><div align="right">Shipping Method:</div></th>
</tr>
<tr>
<th width="126" height="43" scope="col"><div align="left">1/11/13</div></th>
<th width="433" scope="col">&nbsp;</th>
<th width="103" scope="col">&nbsp;</th>
<th width="156" scope="col"><div align="right">BEAST!</div></th>
</tr>
</table>
<table width="500" height="88" border="1">
<tr>
<th width="48" scope="col">Item</th>
<th width="264" scope="col">Product Name</th>
<th width="68" scope="col">Quantity</th>
<th width="92" scope="col">Price</th>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<hr>
<table width="500" height="227" border="0">
<tr>
<th height="43" scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th>
<th scope="col">Subtotal:</th>
<th scope="col">&nbsp;</th>
</tr>
<tr>
<th height="43" scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th>
<th scope="col">Tax:</th>
<th scope="col">&nbsp;</th>
</tr>
<tr>
<th height="43" scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th>
<th scope="col">Shipping:</th>
<th scope="col">&nbsp;</th>
</tr>
<tr>
<th height="43" scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th>
<th scope="col">Discount:</th>
<th scope="col">&nbsp;</th>
</tr>
<tr>
<th width="40" height="43" scope="col">&nbsp;</th>
<th width="278" scope="col">&nbsp;</th>
<th width="68" scope="col">Grand Total:</th>
<th width="96" scope="col">&nbsp;</th>
</tr>
</table>
<p align="right">&nbsp;</p>
</body>
</html>



';



// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";





$headers .= 'From: Order reminder <lol@gmail.com>' . "\r\n";



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


}

エコーは、何かを正しく呼びたいときです。エコーしたくないので、エコーせずにコンテンツをメールに表示したいだけです。

4

4 に答える 4

1

変数をエコーし​​ないで、文字列に連結してください。すなわち

$message = "Some text ".$foo." some more text';

いいえ:

$message = "Some text <?=$foo ?> some more text';
于 2012-11-27T02:54:43.227 に答える
0

Heredocこれには次の構文を使用できます。

$message =<<<EOM
<html>
<body>
...
<table width="500" height="215" border="0">
<tr>
<th width="181" height="211" scope="col"><p align="left">Ship To:</p>
<p align="left">{$row3['first_name']}</p>
<p align="left">{$row3['address_1']}</p>
<p align="left">{$row3['city']}</p></th>
...
EOM;

htmlspecialchars()ただし、$row3最初に適用することをお勧めします。

$row3 = array_map('htmlspecialchars', $row3);

$row3これは、コードで後で使用しないことを前提としています

于 2012-11-27T02:59:17.093 に答える
0

メッセージ コンテンツの途中で間違ったショートタグが何をしているのか。

<?= ?>

ショートタグの詳細については、この投稿を参照してください

私はちょうどからそれらすべてのものを置き換えるだろう

<?php
    $message '...
        <p align="left"><?=$row3['first_name']?></p>

<?php
    $message '...
        <p align="left">'.$row3['first_name'].'</p>
于 2012-11-27T02:56:14.890 に答える
0

出力バッファリングの有効化については、この PHP ドキュメントを参照してください。

http://php.net/manual/en/function.ob-start.php

ありがとう

于 2012-11-27T02:53:21.773 に答える