Hi, I think this may have started after upgrading to 7.2, but Iâm uncertain.
When I update a case, it sends 2 emails to the contact, they are duplicates except one displays the contactâs name âHi Person,â the other displays only the greeting âHi ,â. Otherwise they are duplicates.
This can be fixed in /modules/AOP_Case_Updates/AOP_Case_Updates.php in the save function, line 84,
remove this:
if($emails && $email_template){
$GLOBALS[âlogâ]->info(âAOPCaseUpdates: Calling send emailâ);
$res = $this->sendEmail($emails, $email_template, $signature, $this->case_id, $addDelimiter);
}
Make sure it is second occurence of this code as it appears twice in this function.