* Is called after encryption and injects ciphertext and recipient * email addresses into the webmail interface. * @param {String} options.text The encrypted message body * @param {Array} options.to The recipients to be added * @param {Array} options.cc The copy recipients t
(options)
| 174 | * @param {Array} options.cc The copy recipients to be added (not yet supported) |
| 175 | */ |
| 176 | setEditorOutput(options) { |
| 177 | // set message body |
| 178 | this.normalizeButtons(); |
| 179 | this.setMessage(options.text); |
| 180 | // set recipient email addresses |
| 181 | this.currentProvider.setRecipients({recipients: options.to, editElement: this.editElement}); |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * Replace content of editor element (_emailTextElement) |
no test coverage detected