私はこれを含む複数の例を見てきました。
メールは問題ありませんが、添付ファイルはありません。ファイルタイプのコンテンツ/タイプがありませんか?私が見たすべての例では、コンテンツタイプとして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';
}
あなたが試したことに関するいくつかのコードを投稿できますか?
—
スティーブンハリス
こんにちはスティーブン、コードで投稿を更新しました。ありがとうございました!
—
tbm 2012