ワンクリックで
resend-robot-send
Simulate receiving an inbound email in dev. Sends through the app's webhook pipeline via Resend Robot's local shim.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Simulate receiving an inbound email in dev. Sends through the app's webhook pipeline via Resend Robot's local shim.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | resend-robot-send |
| version | 1.0.0 |
| description | Simulate receiving an inbound email in dev. Sends through the app's webhook pipeline via Resend Robot's local shim. |
| allowed-tools | ["Bash","Read","Grep","Glob"] |
You are running the /resend-robot-send workflow. Use Resend Robot to simulate receiving an inbound email through the app's webhook pipeline.
bin/rails "resend_robot:reply[0,Thanks for the email!]"
This finds the most recent outbound email, uses its recipient as from and its reply-to address as to, then:
/webhooks/resend)The first argument is the index (0 = most recent, 1 = second most recent, etc.).
First find the email index:
bin/rails resend_robot:outbox
Then reply to it:
bin/rails "resend_robot:reply[2,I have a question about this]"
bin/rails "resend_robot:receive[stranger@gmail.com,,Question about something,Is this available?]"
Arguments: [from, to, subject, body]
to is empty and reply_domain is configured, Resend Robot auto-generates a cold-{hex}@{reply_domain} addressto address should match your app's inbound email domain for the webhook controller to accept itresend_robot:reply[0,Thanks! Got it.]resend_robot:receive[stranger@gmail.com,,Question,Is this available?]/resend-robot-read to verify -> /resend-robot-send to reply -> check app statebin/dev) for inbound simulation to work| Task | Description |
|---|---|
resend_robot:reply[INDEX,BODY] | Reply to the Nth most recent outbound email |
resend_robot:receive[FROM,TO,SUBJECT,BODY] | Simulate receiving an email from a specific address |
resend_robot:outbox | List recent outbound emails |
resend_robot:clear | Delete all stored emails |