Adobe Journey Optimizer
Send Wallet Crew transactional emails via Adobe Journey Optimizer (AJO) using the script email provider.
Use this option when you have Adobe Journey Optimizer (AJO) and you want API-triggered sends that fit modern journey orchestration.
Before you go further, make sure you understand how the script provider works in The Wallet Crew. Start with Adobe Marketing Cloud and the prerequisite EmailSender extensibility.
When to use this
You typically pick AJO when you want near real-time sends and your marketing team already operates journeys in AJO.
Setup required in Adobe
Create an API-triggered journey or campaign that can accept an execution call. Then configure the email action.
At minimum, agree on what your script sends to AJO.
Fully rendered HTML from The Wallet Crew (
Subject,Body).Or context variables only, with the template managed in AJO.
Pick one rendering strategy. Avoid duplicating templating in both The Wallet Crew and Adobe.
Implementation notes (OAuth + trigger)
AJO uses Adobe IMS for OAuth2 (client credentials). Your script typically requests an access token, then calls the AJO execution endpoint for your campaign or journey.
Adobe endpoints and payload shapes depend on your org setup, region, and the AJO feature you use (journey vs campaign). Treat the snippet below as a skeleton, and align it with Adobe’s official docs for your product version.
Store these values as secrets before you test:
adobe-clientIdadobe-clientSecretadobe-orgIdadobe-sandboxNameadobe-ajo-triggerUrl(full AJO trigger URL)adobe-scope(optional, depends on your Adobe setup)
What to validate
Trigger a real transactional email, then validate these points:
AJO receives the execution call and accepts it.
The AJO email action has access to the context fields you send.
If you pass HTML, the final email renders correctly in common clients.
FAQ
Do we need an “API-triggered journey” in AJO?
Yes. Your script needs a published AJO asset that can be triggered by an API call. The exact asset type (journey vs campaign) depends on what your Adobe organization uses.
Can AJO send an email built by The Wallet Crew?
Yes. A common pattern is to call buildEmail() in your script, then pass subject and body as context to AJO. Your AJO email action must be configured to use these fields.
Last updated

