Simplio3D

Email Logs

View delivery logs, delete entries, and resend failed emails.

Get Logs

const logs = await client.getEmailLogs();
logs.forEach(log => console.log(log.type, log.recipient, log.status));

Delete Log

await client.deleteEmailLog('log_123');

Resend Failed Email

await client.resendEmail('log_123');

Continue reading