Bug #662
[ FIXED ] - Announcement "from" email isnt the teacher's one... So replies dont get their inboxes.
Status:
Bug resolved
Priority:
Normal
Assignee:
Bryan Fuertes Malca
Category:
-
Target version:
-
Complexity:
Normal
SCRUM pts - complexity:
?
Description
Dunno if this is because I'm using GoogleApps (gmail) for my domain.... maybe they dont allow to change the "From".
If you send a announcement via email the email sender is the platform email address....
If a student tries to reply the teacher, he will send a email to the system email address.
To fix this you should go to:
/main/inc/lib/mail.lib.inc.php
and add the following lines after line number 143:
if (($sender_email != "") && ($sender_name != ""))
{
$mail->AddReplyTo ($sender_email,$sender_name);
}
This will add the teacher's email address as "Reply to".
History
Updated by Carlos Vargas about 12 years ago
- Status changed from New to Needs testing
- % Done changed from 50 to 90
Updated by Bryan Fuertes Malca over 10 years ago
- Assignee changed from Carlos Vargas to Bryan Fuertes Malca