Re: How to simply send an email using the API only?

Anonymous
Not applicable

How to simply send an email using the API only?

Hi,

My use case is pretty simple but I am not sure how to do it as I am a very new beginner with Marketo.

I am developing a web portal and I just need to send transactional emails from my web portal to a single customer email. Email such as "Welcome blablabla", "Please confirm your email blablabla". I don't need to create any lead and marketing campaign for now, I just need to use Marketo as a SMTP platform.

What is the easiest way to do itby using the API only?

Thank you for any support,

Sébastien Reyes

4 REPLIES 4
Anonymous
Not applicable

Re: How to simply send an email using the API only?

You may be going in a direction that will actually make things  more difficult. You can very easily set up a smart campaign that would send an email to whomever you chose, based on some action from your web portal. What is happening that causes the need to send the email? Is the end user submitting a form, clicking a link, simply visiting a webpage? Any of those actions can trigger Marketo to send an email for you.

All you need to do is create a default program in Marketo. From there, add in a smart campaign with a smart list that listens for your desired action (fills out form, clicks link, visits webpage) and then use the send email flow step to send your email. Of course, you'll need to build the email before you can send it.

Create a Program -Create a Program - Marketo Docs - Product Docs

Create a Smart Campaign - Create a New Smart Campaign - Marketo Docs - Product Docs

Create an Email - Create an Email Program - Marketo Docs - Product Docs

Send Email Flow Step - Send Email - Marketo Docs - Product Docs

Josh_Hill13
Level 10 - Champion Alumni

Re: How to simply send an email using the API only?

you will need to embed a Marketo Form on the page or use the API to pass a custom form info to Marketo.

SanfordWhiteman
Level 10 - Community Moderator

Re: How to simply send an email using the API only?

I don't need to create any lead

This is fundamentally impossible. Even if the lead is deleted directly after sending (which is a really bad idea!) there must be a lead in your database at the time the email is sent.

Like Chris said, if you have a web (Munchkin) session that's already associated with a lead, and/or you have the lead fill out a form, you can use a simple Filled Out Form trigger to send an email. Even if you have an existing form, you can do a background Marketo form post to mirror that activity in Marketo.

SanfordWhiteman
Level 10 - Community Moderator

Re: How to simply send an email using the API only?

What is the easiest way to do itby using the API only?

P.S. Using the ​REST API (if that's what you're implying by "API") for this is far more complex, dangerous, and resource-wasteful than using the Forms API to do a background post.