How to send an attachment mail using wp_mail mail How to send an attachment mail using wp_mail mail wordpress wordpress

How to send an attachment mail using wp_mail mail


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.