Claude to Gmail (Send Email)

:bullseye: What is your goal?

My goal is to have Claude send drafted email content to Make and then take the information and pass to Gmail to send the email to the recipient.

:thinking: What is the problem & what have you tried?

I have a webhook created for Make as the Scenario start and then attempts to submit the content received from Claude to the Gmail - Send Email action. Claude has the Make connector established and successfully makes the connection with Make. Make shows that the webhook was successfully run, however, the email is never sent.

Troubleshooting the issue and logs in Make shows that the webhook never receives a Bundle, so I am not able to take the content from Claude and pass it to the Gmail step. How do I get the webhook to properly receive the Bundle from Claude so the data can be mapped?

:clipboard: Error messages or input/output bundles

Here is the event logs for the webhook stage:

Initialization
1
Operation 1
No bundles were generated by this operation.

Commit
Finalization

Hey Eric,

can you check on Claude side and see what it is trying to send?

{
“scenarioId”: xxxxxxx,
“responsive”: true,
“data”: {
“to”: “xxxxxxxxxx@gmail.com”,
“subject”: “Test”,
“body”: “Hi,\n\nJust wanted to reach out and say hello! Hope you’re doing well.\n\nBest regards”
}
}

This is what Claude was showing as being sent to Make. Looks like the JSON should be showing the To, Subject, and Body option in the bundle, but nothing is showing.

I was able to find the issue. For anyone else that this may benefit:

Being new to Make it is sometimes difficult to know what module to use. After further trial and error, I was able to determine that you need to use the “Scenario:Start Scenario” module on your blueprint with an On-Demand trigger. As long as you have the Make connector in Claude setup and you define the scenario ID in your Claude prompt, you just now need to establish what your scenario inputs are going to be passed to from Claude.

1 Like