我一直在研究包括该示例在内的多个示例。
我没有收到电子邮件的问题,但是没有附件。我是否缺少文件类型的内容/类型?我看过的所有示例都只使用text / html作为内容类型。
这就是我所拥有的(应斯蒂芬的要求添加)
if( isset( $_POST['to'] ) && isset( $_POST['from'] ) ) {
global $wpdb;
$to = $_POST['to'];
$from = $_POST['from'];
$name = get_bloginfo('name');
$attachment = $_POST['file'];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: multipart/mixed; charset=iso-8859-1' . "\r\n";
$headers .= 'From: ' . $name . ' <' . $from . '>' . "\r\n";
$subject = 'Send to Kindle';
$msg = 'Yay! Your book has <a href="http://yahoo.com">arrived</a>';
$mail_attachment = array( $attachment );
wp_mail($to, $subject, $msg, $headers, $mail_attachment);
echo 'Email sent';
} else {
echo 'Email not sent';
}
您能否发布一些有关您尝试过的代码?
—
Stephen Harris
您好Stephen,刚刚用代码更新了帖子。谢谢!
—
tbm 2012年