|
|
@@ -4832,6 +4832,7 @@ function inviteParticipants() {
|
|
4832
|
4832
|
sharedKeyText =
|
|
4833
|
4833
|
APP.translation.translateString("email.sharedKey",
|
|
4834
|
4834
|
{sharedKey: sharedKey});
|
|
|
4835
|
+ sharedKeyText = sharedKeyText.replace(/\n/g, "%0D%0A");
|
|
4835
|
4836
|
}
|
|
4836
|
4837
|
|
|
4837
|
4838
|
var conferenceName = roomUrl.substring(roomUrl.lastIndexOf('/') + 1);
|
|
|
@@ -4840,6 +4841,7 @@ function inviteParticipants() {
|
|
4840
|
4841
|
var body = APP.translation.translateString("email.body",
|
|
4841
|
4842
|
{appName:interfaceConfig.APP_NAME, sharedKeyText: sharedKeyText,
|
|
4842
|
4843
|
roomUrl: roomUrl});
|
|
|
4844
|
+ body = body.replace(/\n/g, "%0D%0A");
|
|
4843
|
4845
|
|
|
4844
|
4846
|
if (window.localStorage.displayname) {
|
|
4845
|
4847
|
body += "%0D%0A%0D%0A" + window.localStorage.displayname;
|