שירות העברת קבוצות ב-SDK של מנהל מערכת

שירות העברת הקבוצות של Admin SDK מאפשר לכם להשתמש ב-Groups Migration API של Admin SDK ב-Apps Script. ה-API הזה מאפשר לאדמינים של Google Workspace דומיינים (כולל מפיצים) להעביר אימיילים מתיקיות ציבוריות ורשימות תפוצה לארכיונים של קבוצות Google.

חומרי עזר

מידע מפורט על השירות הזה זמין במסמכי העזרה של Admin SDK Groups Migration API. כמו כל השירותים המתקדמים ב-Apps Script, גם בשירות Admin SDK Groups Migration נעשה שימוש באותם אובייקטים, שיטות ופרמטרים כמו ב-API הציבורי. מידע נוסף זמין במאמר איך נקבעות חתימות השיטות.

כדי לדווח על בעיות ולקבל תמיכה נוספת, אפשר לעיין במדריך התמיכה בנושא העברת קבוצות של Admin SDK.

קוד לדוגמה

בקוד לדוגמה שבהמשך נעשה שימוש בגרסה 1 של ה-API.

העברת אימיילים מ-Gmail לקבוצת Google

הדוגמה הזו מקבלת שלוש הודעות בפורמט RFC 822 מכל אחת משלוש השרשורים האחרונים בתיבת הדואר הנכנס של המשתמש ב-Gmail, יוצרת blob מתוכן האימייל (כולל קבצים מצורפים) ומוסיפה אותו לקבוצת Google בדומיין.

advanced/adminSDK.gs
/**
 * Gets three RFC822 formatted messages from the each of the latest three
 * threads in the user's Gmail inbox, creates a blob from the email content
 * (including attachments), and inserts it in a Google Group in the domain.
 */
function migrateMessages() {
  // TODO (developer) - Replace groupId value with yours
  const groupId = 'exampleGroup@example.com';
  const messagesToMigrate = getRecentMessagesContent();
  for (const messageContent of messagesToMigrate) {
    const contentBlob = Utilities.newBlob(messageContent, 'message/rfc822');
    AdminGroupsMigration.Archive.insert(groupId, contentBlob);
  }
}

/**
 * Gets a list of recent messages' content from the user's Gmail account.
 * By default, fetches 3 messages from the latest 3 threads.
 *
 * @return {Array} the messages' content.
 */
function getRecentMessagesContent() {
  const NUM_THREADS = 3;
  const NUM_MESSAGES = 3;
  const threads = GmailApp.getInboxThreads(0, NUM_THREADS);
  const messages = GmailApp.getMessagesForThreads(threads);
  const messagesContent = [];
  for (let i = 0; i < messages.length; i++) {
    for (let j = 0; j < NUM_MESSAGES; j++) {
      const message = messages[i][j];
      if (message) {
        messagesContent.push(message.getRawContent());
      }
    }
  }
  return messagesContent;
}