Hi there,
i have insert this piece of code in my functions.php of my theme:
[php]
add_filter("gform_user_notification_attachments", "add_attachment", 10, 3);
function add_attachment($attachments, $lead, $form){
//getting wordpress upload folder
$upload = wp_upload_dir();
$upload_path = $upload["basedir"];
$attachments = array();
//add a file from the uploads folder
$attachments[] = $upload_path . "/Algemene-Voorwaarden-Doxis.pdf";
return $attachments;
}'
But the PDF file isn't send with the user notification.. How come??