Integrations

SendGrid

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

Use SendGrid when the agent sends the mail itself. 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 Library > 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 data the agent already has.

Events

SendGrid does not register source events. Start the work another way, such as a message to the agent or a routine, then call email actions from that turn.

Next