Using wp_mail with attachments but no attachments received

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" . "\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';
}

1

The $attachment argument for wp_mail takes a file (or array of files) – but the file path has to be fully specified. For example:

<?php
   $attachments = array(WP_CONTENT_DIR . '/uploads/file_to_attach.zip');
   $headers="From: My Name <[email protected]>" . "\r\n";
   wp_mail('[email protected]', 'subject', 'message', $headers, $attachments);
?>

(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:

$to = $_POST['to'];
$from = $_POST['from']; 
$name = get_bloginfo('name');

$headers="From: My Name <[email protected]>" . "\r\n";

$subject="Send to Kindle";

$msg = 'Yay! Your book has <a href="http://yahoo.com">arrived</a>';

$mail_attachment = array(WP_CONTENT_DIR . '/uploads/2012/03/image.png');   

wp_mail($to, $subject, $msg, $headers, $mail_attachment);

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.

Leave a Comment