google-apps-script
GmailApp
खोज…
टिप्पणियों
उपलब्ध तरीकों पर अधिक जानकारी के लिए GmailApp के लिए आधिकारिक एपीआई संदर्भ भी देखें।
एक मेल से जुड़ी CSV फ़ाइल प्राप्त करें
मान लें कि हमारे पास एक प्रणाली है जो ईमेल पर दैनिक रिपोर्ट संलग्न CSV फ़ाइलों के रूप में भेजती है और जिसे हम इन तक पहुंचना चाहते हैं।
function getCsvFromGmail() {
// Get the newest Gmail thread based on sender and subject
var gmailThread = GmailApp.search("from:[email protected] subject:\"My daily report\"", 0, 1)[0];
// Get the attachments of the latest mail in the thread.
var attachments = gmailThread.getMessages()[gmailThread.getMessageCount() - 1].getAttachments();
// Get and and parse the CSV from the first attachment
var csv = Utilities.parseCsv(attachments[0].getDataAsString());
return csv;
}
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow