Bill Sourour

Results 3 comments of Bill Sourour

Can you confirm that AWS SES is NOT still in Sandbox mode. Have you asked for and received a send limit increase from AWS? If not, you will see a...

@karuppiah7890 yes I see that now. I should have looked more closely at the full thread. I saw the issue title and remembered having a similar issue when I first...

I've resorted to doing this, for now. ```ts export function pgDate(timestamptz: string) { const tszRegex = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{3}$/; const patched = tszRegex.test(timestamptz) ? `${timestamptz}Z` : timestamptz; return new Date(patched).toISOString(); }...