원클릭으로
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 |