1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-25 18:32:20 -05:00

Adjust dummy mail body during development

This commit is contained in:
Tankred Hase 2014-10-27 17:30:42 +01:00
parent edcaf7e3c0
commit 5efa410d7d

View File

@ -555,18 +555,18 @@ function createDummyMails() {
this.answered = answered; this.answered = answered;
this.sentDate = new Date('Thu Sep 19 2013 20:41:23 GMT+0200 (CEST)'); this.sentDate = new Date('Thu Sep 19 2013 20:41:23 GMT+0200 (CEST)');
this.subject = 'Getting started'; // Subject line this.subject = 'Getting started'; // Subject line
// this.body = 'And a good day to you too sir. \n' + this.body = 'And a good day to you too sir. \n' +
// '\n' + '\n' +
// 'Thursday, Apr 24, 2014 3:33 PM safewithme.testuser@gmail.com wrote:\n' + 'Thursday, Apr 24, 2014 3:33 PM safewithme.testuser@gmail.com wrote:\n' +
// '> adsfadfasdfasdfasfdasdfasdfas\n' + '> adsfadfasdfasdfasfdasdfasdfas\n' +
// '\n' + '\n' +
// 'http://example.com\n' + 'http://example.com\n' +
// '\n' + '\n' +
// '> Tuesday, Mar 25, 2014 4:19 PM gianniarcore@gmail.com wrote:\n' + '> Tuesday, Mar 25, 2014 4:19 PM gianniarcore@gmail.com wrote:\n' +
// '>> from 0.7.0.1\n' + '>> from 0.7.0.1\n' +
// '>>\n' + '>>\n' +
// '>> God speed!'; // plaintext body '>> God speed!'; // plaintext body
this.html = '<!DOCTYPE html><html><head></head><body><h1 style="border: 1px solid red; width: 500px;">Hello there' + Math.random() + '</h1></body></html>'; //this.html = '<!DOCTYPE html><html><head></head><body><h1 style="border: 1px solid red; width: 500px;">Hello there' + Math.random() + '</h1></body></html>';
this.encrypted = true; this.encrypted = true;
this.decrypted = true; this.decrypted = true;
}; };