1
Hi,
i have a question about this module with XOOPS 2.0.13
Liaise previous version to 1.26 was this:
Emails have as the sender the name and email address insert by the user in the form.
In Liaise 1.26 the sender email address is email of site administrator. I wish that in Outlook "reply" answer to who have completed the request and did not myself.
I tried to change /include/form_execute.php
at the line 240
$xoopsMailer->useMail();
$xoopsMailer->setFromName($xoopsConfig['sitename']);
$xoopsMailer->setFromEmail($xoopsConfig['adminmail']);
if( isset($reply_mail) ){
$xoopsMailer->multimailer->AddReplyTo($reply_mail, isset($reply_name) ? '"'.$reply_name.'"' : null);
}
with this:
$xoopsMailer->useMail();
$xoopsMailer->setFromName($reply_name);
$xoopsMailer->setFromEmail($reply_mail);
if( isset($reply_mail) ){
$xoopsMailer->multimailer->AddReplyTo($reply_mail, isset($reply_name) ? '"'.$reply_name.'"' : null);
}
But it does not work, can you help me?
Thank for your attention