Change invitations to use HTML instead of text. Fixes bug #11434.
This commit is contained in:
parent
0fb7a60917
commit
aafbf01b8e
2 changed files with 2 additions and 1 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
- fixed #11409: 7.7.32 Breaks Code Editor
|
- fixed #11409: 7.7.32 Breaks Code Editor
|
||||||
- fixed #11426: Logout page gets cached
|
- fixed #11426: Logout page gets cached
|
||||||
- fixed #11428: Dataform Date Field Problem
|
- fixed #11428: Dataform Date Field Problem
|
||||||
|
- fixed #11434: Inbox invitation adds text to email instead of html
|
||||||
|
|
||||||
7.8.12
|
7.8.12
|
||||||
- fixed #11285: Pasting HTML into Code Editor in IE
|
- fixed #11285: Pasting HTML into Code Editor in IE
|
||||||
|
|
|
||||||
|
|
@ -956,7 +956,7 @@ sub www_inviteUserSave {
|
||||||
|
|
||||||
my $emailBody = $self->processTemplate( $var, $self->getInviteUserMessageTemplateId );
|
my $emailBody = $self->processTemplate( $var, $self->getInviteUserMessageTemplateId );
|
||||||
|
|
||||||
$invitation->addText($emailBody);
|
$invitation->addHtml($emailBody);
|
||||||
|
|
||||||
$invitation->send;
|
$invitation->send;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue