我正在通过电子邮件发送GSheet作为PDF附件。问题是如何使用Landscape
而不是Portrait
进行制作?默认情况下,它在文件中下载Landscape,但在代码中它成为Portrait。
我需要指定什么参数?
var pdf = DriveApp.getFileById(PDFsheet_ID).getAs("application/pdf").getBytes();
var attach = {fileName:'Test Franchise PDF.pdf',content:pdf, mimeType:'application/pdf'};
// Send the freshly constructed PDF as attachment via email
MailApp.sendEmail('email@gmail.com', 'test pdf', 'check it!', {attachments:[attach]});