Send attachment through gravity form mail in WordPress


Please find below code to send any documnet, PDF send through mail

/* Gravity forms */
function wdm_add_attachment( $notification, $form, $entry ) {
$upload_dir = wp_upload_dir();
if($form_id==9){
$notification[“attachments”] = $upload_dir[‘basedir’].’/pdf/order_new.pdf’;
}
return $notification;
}

add_filter(“gform_notification”, “wdm_add_attachment”, 9, 3);

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s