Queue invitations to be sent instead of sending them directly to avoid dropped emails due to SMTP problems. Fixes bug #11436.

This commit is contained in:
Colin Kuskie 2010-02-24 09:49:19 -08:00
parent aafbf01b8e
commit f761188bb0
2 changed files with 2 additions and 1 deletions

View file

@ -10,6 +10,7 @@
- fixed #11426: Logout page gets cached
- fixed #11428: Dataform Date Field Problem
- fixed #11434: Inbox invitation adds text to email instead of html
- fixed #11436: Inbox invitation use mail send instead of mail queue
7.8.12
- fixed #11285: Pasting HTML into Code Editor in IE

View file

@ -958,7 +958,7 @@ sub www_inviteUserSave {
$invitation->addHtml($emailBody);
$invitation->send;
$invitation->queue;
} ## end for my $inviteeEmail (@toList)