I am currently trying to export data from the spreadsheet to JPEG/PNG format and use it the email body as an Inline image rather than an attachment. previously, I used to export the data to PDF and send as an attachment using the below code:
function sendReport() {
var message = {
to: "[email protected]",
subject: "Random Subject Line",
body: "This is just a trial. Ignore.",
name: "Name",
attachments: [SpreadsheetApp.getActiveSpreadsheet().getAs(MimeType.PDF).setName("SampleOutput")]
}
MailApp.sendEmail(message);
}
I tried changing the MimeType to PNG, but it returned an error. Is there any way to do this? I couldn't find any existing solution to this issue. PS: I need data to be captured for the first 10 rows only OR till the row where data ends.