How to export Google sheets data to JPEG/PNG to be used as Inline Image in Gmail using GAS?

422 Views Asked by At

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.

0

There are 0 best solutions below