Hello to all, welcome to therichpost.com. In this post, I will tell you, WordPress send pdf with wp_mail function.
Here is the working code and you can add this code into your main function or any hook:
$attachments = array(WP_CONTENT_DIR .'/uploads/2019/08/your-pdf-fine-name.pdf'); $to = 'user@gmail.com'; $subject = 'WordPress wp_mail'; $message = "Please check the attached PDF."; array('Content-Type: text/html; charset=UTF-8', 'From: mysite <contact@mail.com>'); wp_mail( $to, $subject, $message, $headers, $attachments );
If you have any query then please let me know.
Jasa jatt
thank you
Its not working for me am using php version 8.2 and wordpress version 6.2.2
Okay I will check and update it with latest versions.
I follow the article but attachment is not showing in the Email. WHy?
Code has been updated, thanks.