Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Last active July 24, 2018 14:58
Show Gist options
  • Save oshliaer/70a58023098a64eebad4fcdedabf002d to your computer and use it in GitHub Desktop.
Save oshliaer/70a58023098a64eebad4fcdedabf002d to your computer and use it in GitHub Desktop.
var ID = "xxx";
var EMAIL = "[email protected]";
var RANGEA1 = "Sheet1!A2:F10";
function sendData() {
var spreadsheet = SpreadsheetApp.openById(ID);
var data = spreadsheet.getRangeByName(RANGEA1).getValues().datesToString();
var message = {};
message.subject = "Данные";
message.to = EMAIL;
message.htmlBody = dataToHtmlTable_(data);
MailApp.sendEmail(message);
}
Array.prototype.datesToString = function(){
return this.map(function(row){
return row.map(function(cell){
return cell && cell.getTime ? Utilities.formatDate(cell, Session.getScriptTimeZone(), "yyyy-MM-dd") : cell;
});
});
}
function dataToHtmlTable_(data){
return JSON.stringify(data, null, " ")
.replace(/^\[/g, "<table>")
.replace(/\]$/g, "</table>")
.replace(/^\s\s\[$/mg, "<tr>")
.replace(/^\s\s\],{0,1}$/mg, "</tr>")
.replace(/^\s{4}"{0,1}(.*?)"{0,1},{0,1}$/mg, "<td>$1</td>");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment