How do I set the from e-mail address used by the sitemap e-mail notification?
This is a discussion on How do I specify the report from e-mail address? within the General Discussion forums, part of the vBSEO Google/Yahoo Sitemap category; How do I set the from e-mail address used by the sitemap e-mail notification?...
How do I set the from e-mail address used by the sitemap e-mail notification?
Actually, that was done in the build that is not yet available. You can change "from" email address in vbseo_sitemap_functions.php file now.
FIND:
REPLACE WITH:PHP Code:mail($email,
'vBSEO Google/Yahoo Sitemap Updated',
$mailbody);
PHP Code:mail($email,
'vBSEO Google/Yahoo Sitemap Updated',
$mailbody,"From: email@domain.com");
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Perfect thanks,
I opted for:
PHP Code:mail($email,
'vBSEO Google/Yahoo Sitemap Updated',
$mailbody,'From: '.$vboptions['webmasteremail']);