https://productforums.google.com/forum/#!topic/docs/7gdrXQbME4U
-
-
Save oshliaer/70a58023098a64eebad4fcdedabf002d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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