我尝试使用gform_notification方法将文件附加到发送给用户的通知中。我真的尝试过论坛上给出的所有例子,但似乎没有任何效果。用户收到通知,但文件未附加。
这个帖子的问题是重复的。但是帖子中的解决方案对我不起作用。 How do I attach a pdf file to a Gravity Forms Notification?
必须从服务器中提取文件.i.e媒体部分Wordpress。
function change_user_notification_attachments( $notification, $form, $entry)
{
if( $notification['name'] == 'User Notification')
{
$attachments = array();
$attachments[] =RGFormsModel::get_upload_root().'/2017/12/myfile.pdf';
$notification['attachments'] = $attachments;
}
return $notification;
}
add_filter( 'gform_notification_25', 'change_user_notification_attachments', 10, 3 );