2017-10-12 114 views
-2

它來自first question如何使用GmailApp_2發送富文本電子郵件?

function emailGoogleDoc(){ 
var id = DocumentApp.getActiveDocument().getId() ; 
var forDriveScope = DriveApp.getStorageUsed(); //needed to get Drive Scope 
requested 
var url = "https://docs.google.com/feeds/download/documents/export/Export? 
id="+id+"&exportFormat=html"; 
var param = { 
method  : "get", 
headers  : {"Authorization": "Bearer " + ScriptApp.getOAuthToken()}, 
muteHttpExceptions:true, 
}; 
var html = UrlFetchApp.fetch(url,param).getContentText(); 
Logger.log(html); 

var email = [email protected]; 
var subject = 'Subject line'; 
var body = "To view this email, please enable html in your email client."; 

MailApp.sendEmail(
    email,   // recipient 
    subject,   // subject 
    body, {   // body 
    htmlBody: html // advanced options 
    } 
); 
} 

嗨!我遇到了這個代碼的麻煩。

它運行完美,除了文本。它沒有粗體或顏色。

回答

0

MailApp.sendEmail({ 於:電子郵件, 受試者:受試者, htmlBody:HTML });

相關問題