Skip to content
Snippets Groups Projects
Commit 67d0d40a authored by angelo paglialonga's avatar angelo paglialonga
Browse files

mass_mail fix for #1559

parent bf90807b
No related branches found
No related tags found
1 merge request!840mass_mail fix for #1559
......@@ -100,8 +100,8 @@ class Emails_Record_Model extends Vtiger_Record_Model {
if(trim($selectedEmail)){
array_push($emails, $selectedEmail);
}
}
}
// }
// }
$inReplyToMessageId = '';
$generatedMessageId = '';
......@@ -127,8 +127,8 @@ class Emails_Record_Model extends Vtiger_Record_Model {
$inReplyToMessageId = $generatedMessageId;
}
// Apply merge for non-Users module merge tags.
$description = getMergedDescription($mergedDescriptionWithHyperLinkConversion, $id, $parentModule);
$subject = getMergedDescription($mergedSubject, $id, $parentModule);
$description = getMergedDescription($mergedDescriptionWithHyperLinkConversion, $selectedId, $parentModule);
$subject = getMergedDescription($mergedSubject, $selectedId, $parentModule);
} else {
// Re-merge the description for user tags based on actual user.
$description = getMergedDescription($mergedDescriptionWithHyperLinkConversion, $id, 'Users');
......@@ -177,7 +177,7 @@ class Emails_Record_Model extends Vtiger_Record_Model {
$plainBody = Emails_Mailer_Model::convertToAscii($plainBody);
$plainBody = $this->convertUrlsToTrackUrls($plainBody, $id,'plain');
$mailer->AltBody = $plainBody;
$mailer->AddAddress($email);
// $mailer->AddAddress($email);
//Adding attachments to mail
if(is_array($attachments)) {
......@@ -243,6 +243,8 @@ class Emails_Record_Model extends Vtiger_Record_Model {
imap_append($connector->mBox, $connector->mBoxUrl.$folderName, $message, "\\Seen");
}
}
}
}
return $status;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment