שירות Gmail המתקדם מאפשר להשתמש ב-Gmail API ב-Apps Script. בדומה לשירות Gmail המובנה של Apps Script, ממשק ה-API הזה מאפשר לסקריפטים למצוא ולשנות שרשורים, הודעות ותוויות בתיבת דואר של Gmail. ברוב המקרים קל יותר להשתמש בשירות המובנה, אבל השירות המתקדם הזה מספק כמה תכונות נוספות וגישה למידע מפורט יותר על התוכן ב-Gmail.
חומרי עזר
מידע מפורט על השירות הזה זמין במאמרי העזרה של Gmail API.
כמו כל השירותים המתקדמים ב-Apps Script, בשירות המתקדם של Gmail נעשה שימוש באותם אובייקטים, שיטות ופרמטרים כמו ב-API הציבורי. מידע נוסף זמין במאמר איך נקבעות חתימות השיטות.
/** * Lists the user's labels, including name, type, * ID and visibility information. */functionlistLabelInfo(){try{constresponse=Gmail.Users.Labels.list('me');for(leti=0;i < response.labels.length;i++){constlabel=response.labels[i];console.log(JSON.stringify(label));}}catch(err){console.log(err);}}
הצגת רשימה של קטעי קוד בתיבת הדואר הנכנס
בדוגמה הבאה מוסבר איך להציג רשימה של קטעי טקסט שמשויכים לכל שיחה בתיבת הדואר הנכנס של המשתמש. שימו לב לשימוש באסימוני דפים כדי לגשת לרשימת התוצאות המלאה.
/** * Lists, for each thread in the user's Inbox, a * snippet associated with that thread. */functionlistInboxSnippets(){try{letpageToken;do{constthreadList=Gmail.Users.Threads.list('me',{q:'label:inbox',pageToken:pageToken});if(threadList.threads && threadList.threads.length > 0){threadList.threads.forEach(function(thread){console.log('Snippet:%s',thread.snippet);});}pageToken=threadList.nextPageToken;}while(pageToken);}catch(err){console.log(err);}}
הצגת רשימה של ההיסטוריה מהזמן האחרון
בדוגמה הבאה מוסבר איך לתעד ביומן את היסטוריית הפעילות האחרונה.
באופן ספציפי, בדוגמה הזו מתבצע שחזור של מזהה רשומת ההיסטוריה שמשויך להודעה האחרונה שנשלחה על ידי המשתמש, ולאחר מכן מתבצע רישום ביומן של מזהי ההודעות של כל הודעה שהשתנתה מאז. כל הודעה ששונתה מתועדת ביומן רק פעם אחת, ללא קשר למספר אירועי השינוי ברשומות ההיסטוריה. שימו לב לשימוש באסימוני דפים כדי לגשת לרשימה המלאה של התוצאות.
/** * Gets a history record ID associated with the most * recently sent message, then logs all the message IDs * that have changed since that message was sent. */functionlogRecentHistory(){try{// Get the history ID associated with the most recent// sent message.constsent=Gmail.Users.Threads.list('me',{q:'label:sent',maxResults:1});if(!sent.threads||!sent.threads[0]){console.log('Nosentthreadsfound.');return;}consthistoryId=sent.threads[0].historyId;// Log the ID of each message changed since the most// recent message was sent.letpageToken;constchanged=[];do{constrecordList=Gmail.Users.History.list('me',{startHistoryId:historyId,pageToken:pageToken});consthistory=recordList.history;if(history && history.length > 0){history.forEach(function(record){record.messages.forEach(function(message){if(changed.indexOf(message.id)===-1){changed.push(message.id);}});});}pageToken=recordList.nextPageToken;}while(pageToken);changed.forEach(function(id){console.log('MessageChanged:%s',id);});}catch(err){console.log(err);}}
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2024-12-21 (שעון UTC)."],[[["The Advanced Gmail service in Apps Script lets you use the Gmail API to interact with your mailbox, offering more features than the built-in service."],["This advanced service requires enabling before use and provides access to detailed information about threads, messages, and labels."],["You can utilize the provided sample code snippets to list label information, inbox snippets, and recent history within your Gmail account."],["The Gmail API might limit data returned in list requests for performance, requiring follow-up 'get' requests for detailed information."],["For comprehensive details, refer to the reference documentation, support guide, and sample code on GitHub."]]],[]]