Hi there,
Is there are way to capture the response from the smtp in a Create Email Content in workflow?
Even if it’s just a success of the whole send?
Cheers
Hi there,
Is there are way to capture the response from the smtp in a Create Email Content in workflow?
Even if it’s just a success of the whole send?
Cheers
I’ve been looking into the API info and this would seem to be something that might work?
Get Result of Operation
but the operationID doesn’t seem to exist on the API once the Create Email Content task has completed?
In order to get an operationID, you’ll need to send your email using the REST API. Using the plugin in Workflow won’t return one to you.
Does the plugin capture anything back from the server with regard to the send ?
Can anyone give some insight into how the SendGrid & Mailjet Plugins work with the Render Email Content? What methods are being used to retrieve the content from the Filestore ?
We can’t use either of these platforms and are looking at using a local Australian based service.
I tried unpacking these plugins to have a look but there are encrypted.
Cheers
You can retrieve the files produced by Render Email Content using the filestore/file/${folderId}/${relativePath}
endpoint, documented in the cookbook under “Download Contents of a Managed Directory”.
Email body:
GET text/plain `${serverUrl}/filestore/file/${json.folder}/${json.body}`
For each attachment
in json.attachments
:
GET application/octet-stream `${serverUrl}/filestore/file/${json.folder}/${attachment.name}`
Optionally pass ?output=base64
.