For contact form module, how to customize the received mail format
– If you want to change the From mail / name as what you want(the default is: WordPress [mailto:wordpress@yoursite.com])
find line 54 of ../functions/pagebuilder/modules/contact-form.php:
$headers = 'Content-type: text/html; charset=utf-8' . "\r\n";
update to:
$headers = 'From: YourName <YourName@YourSite.com>' . "\r\n";
– how to change th Subject format?
find and change line 53 of ../functions/pagebuilder/modules/contact-form.php:
$title = 'Mail from '.$email;
Best,Bwsm
Follow on @uiueux to get update news!