Demo mode. Sample data, Gmail sends are dry runs (the exact API request is recorded, nothing leaves), no login. The sample data resets once a day, or now with the button.

Guest lecture offer for Business and Technology: analytics in practice

2026-09-07 09:05 · to Paul Mensah <pmensah@silverlakecc.edu> · Silver Lake Community College · sent

Email as sent

TemplateBusiness analytics guest lecture
Transportgmail
Gmail message id18f000c99e726239
Gmail thread id18f000c99e726239

Gmail API request

users.messages.send takes one field, raw: the whole RFC 2822 message (headers, text, the PDF as a MIME part) encoded base64url. This is what was built for this email.

{
  "request": "POST https://gmail.googleapis.com/gmail/v1/users/me/messages/send",
  "authorization": "Bearer <OAuth access token, scope gmail.send>",
  "body": {
    "raw": "RnJvbTogIkRyLiBQcml5YSBSYW1hbiIgPHByaXlhLnJhbWFu... (2100 base64url characters)"
  },
  "decoded_message": {
    "headers": {
      "From": "\"Dr. Priya Raman\" <priya.raman.teaching@gmail.com>",
      "To": "Paul Mensah <pmensah@silverlakecc.edu>",
      "Subject": "Guest lecture offer for Business and Technology: analytics in practice",
      "Message-ID": "<178890307146.4.13363192201931561601@gmail.com>",
      "MIME-Version": "1.0",
      "Content-Type": "multipart/mixed; boundary=\"===============0194396654159380799==\""
    },
    "parts": [
      "text/plain",
      "application/pdf (attachment cv-priya-raman.pdf, 15 bytes)"
    ]
  }
}