How to send an attachment mail using wp_mail mail

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

Related posts

Leave a Reply

1 comment

  1. 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.