ドキュメントしたい(DocumentApp
)
1const doc = DocumentApp.openById("ドキュメントID");
2const txt = doc.getBody().getText();
DocumentAppクラスを使ってGoogleドキュメントを操作できます。 メールの送信と組み合わせると最強です。
DocumentApp
)1const doc = DocumentApp.openById("ドキュメントID");
2const txt = doc.getBody().getText();
DocumentAppクラスを使ってGoogleドキュメントを操作できます。 メールの送信と組み合わせると最強です。