1
This small hack will let you reply to emails from the Contact Us module using the username as the "From Name" instead of the site name. This means that you will get "
User Name" instead of "Site Name".
Open and edit ../modules/contact/index.php
Line 75:
from:
$xoopsMailer->setFromName($xoopsConfig['sitename']);
change it to:
$xoopsMailer->setFromName($usersName);
Ain't that simple?