• Resolved gurumosh

    (@gurumosh)


    We rent out conference rooms. We use the plugin in conjunction with the Contracts add-on. This works perfectly. However, we also have to send a static PDF with the email confirmation. This is located in the WordPress upload folder. Is there a way to attach this file to the booking confirmation email?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Roland Murg

    (@murgroland)

    Hi,

    You can do so by adding this code to your theme’s functions.php file.

    add_filter('wpbs_form_mailer_attachments', function($attachments, $email_type){
    if($email_type == 'user'){ // types can be 'user', 'admin', 'payment', 'payment_success', 'reminder', 'followup'
    $attachments[] = '/path/to/your/file.pdf';
    }
    return $attachments;
    }, 50, 2);

    Set the email you want the attachment to be included in, and add the path to your file. You can find the path from WP Admin -> Tools -> Site Health -> Info -> Directories and Sizes -> WordPress directory location.

    Upload your file to WP Admin -> Media, grab the URL and replace the beginning of the URL with the path.

    Thread Starter gurumosh

    (@gurumosh)

    Dear Roland, once again: Thank you very much, works as expected! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.