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.

Adjunct teaching availability: Brightwater University

2026-08-12 09:05 · to Angela Whitfield <awhitfield@brightwater.edu> · Brightwater University · sent

Email as sent

TemplateGeneral adjunct availability
Transportgmail
Gmail message id18f001126c2c608b
Gmail thread id18f001126c2c608b

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... (1716 base64url characters)"
  },
  "decoded_message": {
    "headers": {
      "From": "\"Dr. Priya Raman\" <priya.raman.teaching@gmail.com>",
      "To": "Angela Whitfield <awhitfield@brightwater.edu>",
      "Subject": "Adjunct teaching availability: Brightwater University",
      "Message-ID": "<178890307143.4.11976940316535064160@gmail.com>",
      "MIME-Version": "1.0",
      "Content-Type": "multipart/mixed; boundary=\"===============6296433461135797312==\""
    },
    "parts": [
      "text/plain",
      "application/pdf (attachment cv-priya-raman.pdf, 15 bytes)"
    ]
  }
}