Messaging

SendGrid

A SendGrid integration stores outbound email credentials for Mobius so loops can send plain, HTML, reply, and templated email.

Use SendGrid when the run owns the outbound email step. Use Gmail when mail should be sent from a connected Gmail mailbox.

Capability map

CapabilityValue
Provider IDsendgrid
Auth kindapi_key
Connect flowDirect integration row
ActionsYes
EventsNo
Webhook deliveryNo
Event samplesNo
Live statusNo

Connect SendGrid

SurfaceSupport
AppUse the integration form when SendGrid appears in Govern > Integrations.
CLIThe mobius CLI does not connect SendGrid integrations yet. Use the app or API.
APICreate an integration row with provider: "sendgrid", credential api_key, and config from.

The from address is non-secret config. The API key is stored as secret credentials and is never returned by read endpoints.

{
  "name": "default",
  "provider": "sendgrid",
  "credentials": {
    "api_key": "$SENDGRID_API_KEY"
  },
  "config": {
    "from": "briefs@acme.example"
  }
}

Actions

email.reply
email.send
email.send_template

The action prefix is email. for compatibility, while the provider ID is sendgrid. Use email.send_template when subject or body should be rendered from run data.

Events

SendGrid does not register source events. Start the run from another trigger, then call email actions.

Next