Hi,
I need to enable text notifications for all forms and to do so I have added:
add_action('gform_notification_format', 'set_notification_format', 10, 4);
function set_notification_format($format, $notification_type, $form, $lead){
return 'text';
to my theme's functions.php file.
It appears that notifications are still being emailed out in html format.
Please assist.
Robert