You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hope this message finds you well. I’m reaching out regarding an issue I’m encountering with sending dynamic data emails using Listmonk.
I want to send emails to any email address, passing dynamic data (e.g., name, phone number) directly into the template without using string replacement functions like .replace(). The dynamic data should be injected seamlessly into the template.
This works perfectly for email addresses already subscribed and listed in my subscribers’ database. However, if I attempt to send it to an email address that is not listed, the process fails.
I would appreciate your suggestions on how to fix this issue and enable sending dynamic data emails to any email address, regardless of its subscription status.
Hi @meilook7. This is currently a limitation in listmonk. Only an existing subscriber can receive transactional e-mails. There's a pending PR for this #1754 which may be considered for the next version.
Hi @meilook7. This is currently a limitation in listmonk. Only an existing subscriber can receive transactional e-mails. There's a pending PR for this #1754 which may be considered for the next version.
i succeed to send an email to someone not in my subscribers with that way but not to add a dynamic data its just a HTML string... with that way its not possible?
const result = await mailClient.sendHtmlEmail( " Test Email", "[email protected]", testHtml );
I hope this message finds you well. I’m reaching out regarding an issue I’m encountering with sending dynamic data emails using Listmonk.
I want to send emails to any email address, passing dynamic data (e.g., name, phone number) directly into the template without using string replacement functions like .replace(). The dynamic data should be injected seamlessly into the template.
This works perfectly for email addresses already subscribed and listed in my subscribers’ database. However, if I attempt to send it to an email address that is not listed, the process fails.
I would appreciate your suggestions on how to fix this issue and enable sending dynamic data emails to any email address, regardless of its subscription status.
this is my function:
case "send-aws-email-to-email": {
try {
const listmonkConfig = this.app.get("listmonk");
const baseUrl = baseUrl;
The text was updated successfully, but these errors were encountered: