对于 HTML 代码,
<textarea name="email_content" rows="6" placeholder="Write something"></textarea>
<a href="./something.php">Send it</a>
对于 PHP 代码,
<?php
$email="abcde@abc.com";
$head = "From: email\r\n";
$head .= "Content-type: text/html\r\n";
$title= "Title Test";
$body = "The text in the textarea";
$success = mail($email, $title, $body, $head);
?>
我希望 textarea 中的文本转到 PHP 代码中的 $body 。
另外,我想用 utf-8 发送电子邮件。
请帮忙!