I have been looking at multiple examples including this one.
I get the email no problem but there are no attachments. Am I missing the content/type of file type? All the examples I’ve seen uses only text/html as the content type.
Here’s what I have (added upon Stephen’s request)
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' . "rn";
$headers .= 'Content-type: multipart/mixed; charset=iso-8859-1' . "rn";
$headers .= 'From: ' . $name . ' <' . $from . '>' . "rn";
$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';
}
The
$attachment
argument forwp_mail
takes a file (or array of files) – but the file path has to be fully specified. For example:(see Codex). It seems that your
$_POST['file']
is probably not specifying the full path.The attachment has to a file path, not an url. The following worked for me:
Note: I changed the
headers
attribute too. I’m not entirely sure what you’re example was trying to do, but it meant the message of the email was not visible on some email clients.