I would like to be able to send out the email notifications as Multipart HTML/plain text. Is this possible? I did a search and saw a reference to something like this coming--but I'm not sure if it happened, or how to do it.
Thanks!
I would like to be able to send out the email notifications as Multipart HTML/plain text. Is this possible? I did a search and saw a reference to something like this coming--but I'm not sure if it happened, or how to do it.
Thanks!
Hi Sean,
It would be possible to override Gravity Forms default mail settings with the "wp_mail_content_type" filter.
[php]
add_filter('wp_mail_content_type', 'set_mail_content_type');
function set_mail_content_type($content_type){
return 'text/plain';
}
Replace 'text/plain' with whatever format you wish to send your emails.
Where would this code be entered into my form?
Hi Barebones,
This would go in your theme's functions.php file. More info here:
http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F