Home Wordpress Wordpress send pdf with wp_mail function

Wordpress send pdf with wp_mail function

by therichpost
Published: Updated: 4 comments
How to add custom meta title and meta description in Wordpress?

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

You may also like

4 comments

Umair July 24, 2023 - 2:03 pm

Its not working for me am using php version 8.2 and wordpress version 6.2.2

Reply
therichpost July 24, 2023 - 3:46 pm

Okay I will check and update it with latest versions.

Reply
Darshan Saroya January 2, 2024 - 5:16 am

I follow the article but attachment is not showing in the Email. WHy?

Reply
therichpost January 3, 2024 - 12:51 pm

Code has been updated, thanks.

Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.