嗨即時通訊工作的按鈕,將打開一個新的郵件選項卡與預定義的文本,但我不能在郵件中的任何段落。 我試過\ n和<br>
沒有什麼作品?我怎麼能在我的郵件()
$message .= '<html>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="mailto:' . $email . '?Subject=Deine Reservierung in der 73 Burger.Bar.&Body=Servus, vielen Dank fuer deine Reservierungsanfrage, hiermit bestaetigen wir deine gewueschte Reservierung am ' . $date . ' um ' . $time . ' fuer ' . $amount . '' . "\n" . ' Personen." target="_blank" style="font-size: 16px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; background-color: #EB7035; border-top: 12px solid #EB7035; border-bottom: 12px solid #EB7035; border-right: 18px solid #EB7035; border-left: 18px solid #EB7035; display: inline-block;">Annehmen →</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</html>';
強烈建議不要使用一個mailto標籤。一個HTML表單將是一個更好的主意 – rtfm
可以給我一個鏈接描述我只使用郵件()到現在 –
https://stackoverflow.com/questions/18379238/send-email-with-php-from-html使用相同的腳本提交表單 – rtfm