Google sheet Apps script Export Google sheet As PDF and Send Emai
Giáo án link (giaoan.link) chia sẻ đến các bạn project về Google sheet Apps script Export Google sheet As PDF and Send Email. Bạn có thể sử dụng cách này để tạo thêm trigger để gửi mail đính kèm file được chuyển sang pdf từ sheet của google. Mail có thể gửi theo tuần, tháng, ngày. Project này khá phù hợp trong việc gửi một báo cáo đến nhiều người và thuận tiện là ta có thể tạo giờ để gửi, các file gửi được chứa trên drive của google.
Xem các project các excel ứng dụng khác:
- Googlesheet Apps script Webapp | Tạo trang trắc nghiệm online như Quiz
- Google sheet Apps script | Trang trắc nghiệm Quiz – Cập nhật câu hỏi, trả lời, thời gian đếm ngược
- Google sheets | Number to text, Hàm đọc số thành chữ Ứng dụng taoh hóa đơn, phiếu chi.
- Googlesheet Apps script Webapp | Tạo mã QR Code từ nội dung nhập vào – QR Code Generator
- Google sheet apps script | Dropdown đơn giản lấy dữ liệu từ google sheet – Simple dropdown
- Apps script Webapp CSS – HTML – JS | Tạo ứng dụng Ghi chú trên nền tảng webapp – website
- Google sheet Apps script | Hàm setTimeout định thời gian xóa các trường Input khi click Button
- Apps script Webapp | Sử dụng CSS tạo hiệu ứng sóng nước – Trang trí đẹp mắt cho web và blog.
- Google sheet Apps script Tiện ích tạo mã vạch (barcode) trên webapp
- Google sheet, apps script, webapp | Load và Hiển thị biểu đồ theo năm chọn từ List box
Mã apps script
function onOpen(){
let ui = SpreadsheetApp.getUi();
ui.createMenu("Custom Menu")
.addItem("Gửi email","exportAndSend")
.addToUi();
}
function exportAndSend() {
const date = new Date();
const currentMonth = date.toLocaleString('vi-VN', {month: 'long'});
let revenueStats = DriveApp.getFileById('13qRhgj3IXlXcGUiV7lCjISW2UkwvsjQEKR5_bKsDYRc');
let blob = revenueStats.getAs('application/pdf');
let pdf = DriveApp.getFolderById('1OIMLYqOJdwu8q4HCMFiRlWynwK_JQ_1M')
.createFile(blob)
.setName(`Báo cáo ${currentMonth}`);
sendEmail_(pdf, currentMonth);
}
function sendEmail_(pdf, currentMonth){
GmailApp.sendEmail('giaoanlinkdeverlop@gmail.com, giaoan.link@gmail.com',`Báo cáo ${currentMonth}`,'Dưới đây là file đính kèm báo cáo tháng này.',{
attachments: [pdf]
});
}