How to send an attachment mail using wp_mail mail

email, wordpress

Solution

Try this and let me know then --

$attachments = array(ABSPATH . '/uploads/abc.png');
wp_mail($email, 'Testing Attachment' , 'This is subscription','This is for header',$attachments);

Your attachment is setting as header in this case.

Problem

Is there anyone to tell me that how to send an attachment email using `wp_mail` function of wordpress? I am using the following code but its not working ``` $attachments = array(ABSPATH . '/uploads/abc.png'); wp_mail($email, 'Testing Attachment' , 'This is subscription',$attachments); ``` Thanks

Original source