WordPress send pdf with wp_mail function

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

Comments

4 responses to “WordPress send pdf with wp_mail function”

  1. Umair Avatar

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

  2. therichpost Avatar

    Okay I will check and update it with latest versions.

  3. Darshan Saroya Avatar

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

  4. therichpost Avatar

    Code has been updated, thanks.