1

phpによって生成されている電子メールにリンクを含めようとしています。私はここで見つけた例を見てきましたが、それでも私を働かせることができず、助けが必要です。これが私が持っているものです:

    //send email when pricing specs are done
$to = $email;
$subject = "Final Check In";
$headers = "From: Warehouse@bookcellaronline.com" . "\r\n" .
"CC: micahpartnerships@gmail.com,lreyes@bookcellaronline.com,jimd@bookcellaronline.com";
$body = "Greetings " .$name."!\nWe have completed checking in your latest shipment of books.\nCheck-In date was: " .$finaldate."\n
We checked in " .$count." books.\nA total of " .$notListed." books are not listed yet and have been set aside to be researched.\nComments: ".$comments. "\n
You will now be able to review your shipment details here : '<a href = http:www.bookcellaronline.com/bcos/advances/buyertotal.php>Check In Details</a>'.  Use the Check-In date from above.\n
This is an automated email - do not reply to this email. If you have any questions or concerns, please contact your Manager or Abbie.\n";
$body = wordwrap($body,70);
mail($to, $subject, $body, $headers);

私は明らかに何かが欠けていますが、それが何であるかはわかりません。ありがとう

4

2 に答える 2

5

最初に、コンテンツのヘッダーをHTMLの例に設定します。

$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";

次に、このようなリンクを追加します

<a href = "http://www.bookcellaronline.com/bcos/advances/buyertotal.php">Check In Details</a>
于 2013-02-27T15:21:07.197 に答える
0

まず第一に:mail()関数を使用しないでください。PHPMailer()のような特定のクラスを使用します。本当に。しないでください。

//ここにありません:

<a href = http://www.bookcellaronline.com
于 2013-02-27T15:20:44.397 に答える