By Ahmad Arshad on Sunday, 22 July 2018
Posted in General Issues
Likes 0
Views 612
Votes 0
Hello,

For the notification mailer... It is not picking up the reply-to email in Joomla configuration..

e.g the From and reply-to are set as info@xyz ... but the SMTP username password is mail@xyz... The emails that get sent are shown as being sent from mail@xyz with no info@xyz set... The problem is then people start replying to mail@xyz which is not monitored.

How can we mitigate this?
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

May i know which extension you referring to?

If you set ''reply to email" from your backend mail setting, when the user receive an email, this email info (http://take.ms/KSu3z) should show this ''reply to email" email under this "From" field right?
·
Sunday, 22 July 2018 09:54
·
0 Likes
·
0 Votes
·
0 Comments
·
App is called notification mailer
·
Sunday, 22 July 2018 11:08
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Ahmad,

To use Reply To mail in emailer app, do the below mentioned changes.
Go to root/plugins/payplans/email/email/app/email/email.php, near line no. 97, find below mentioned code

$userId = $object->getBuyer();


Add below mentioned code after above mentioned line of code.

$config = JFactory::getConfig();
$replyTo = $config->get('replyto');
$replyToName = $config->get('replytoname');

$this->_mailer->addReplyTo($replyTo, $replyToName);


Do the changes and let me know if still issue persist.
·
Monday, 23 July 2018 15:16
·
0 Likes
·
0 Votes
·
0 Comments
·
From: Zainab Center Admin <mail@>
X-Google-Original-From: Zainab Center Admin <info@>
Date: Mon, 23 Jul 2018 06:43:24 -0400
To: asa200@
Reply-To: info@
Subject: You have successfully enrolled in our courses.
Message-ID: <609c9116adb52726fcabbfd3a84ee33b@>


Thanks that worked.. Will u make it part of a future release>?
·
Monday, 23 July 2018 19:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Ahmad,

Glad to know that your issue resolved now.
Ok, i've already added in our issue tracker.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.
·
Monday, 23 July 2018 19:07
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post