mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-27 19:19:21 +03:00
Read Receipt (#41)
This commit is contained in:
parent
1dc5a45564
commit
b100560cd8
37 changed files with 883 additions and 461 deletions
|
|
@ -38,6 +38,8 @@ function PopupsComposeViewModel()
|
|||
this.replyTo = ko.observable('');
|
||||
this.subject = ko.observable('');
|
||||
|
||||
this.requestReadReceipt = ko.observable(false);
|
||||
|
||||
this.sendError = ko.observable(false);
|
||||
this.sendSuccessButSaveError = ko.observable(false);
|
||||
this.savedError = ko.observable(false);
|
||||
|
|
@ -294,7 +296,8 @@ function PopupsComposeViewModel()
|
|||
this.prepearAttachmentsForSendOrSave(),
|
||||
this.aDraftInfo,
|
||||
this.sInReplyTo,
|
||||
this.sReferences
|
||||
this.sReferences,
|
||||
this.requestReadReceipt()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -1358,6 +1361,8 @@ PopupsComposeViewModel.prototype.reset = function ()
|
|||
this.replyTo('');
|
||||
this.subject('');
|
||||
|
||||
this.requestReadReceipt(false);
|
||||
|
||||
this.aDraftInfo = null;
|
||||
this.sInReplyTo = '';
|
||||
this.bFromDraft = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue