我正在尝试使用 gform_notification 方法将文件附加到发送给用户的通知中。我已经尝试了论坛上给出的所有示例,但似乎没有任何效果。用户收到通知,但未附加文件。
这个问题与这篇文章重复。但是帖子中的解决方案对我不起作用。如何将 pdf 文件附加到重力形式通知?
该文件必须从服务器 .ie 媒体部分 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 );