Hi,
I’m testing the free tier to see what it’s like to send emails with the API (hoping to suggest a. subscription to a client when done if all goes well) and I sent emails yesterday and they all looked like they sent but the were never received.
Today they started arriving to my inbox, and I can see the ones that had errors in the logs also now.
I’m using python, and the code is essentially this that does the sending:
send_smtp_email = sib_api_v3_sdk.SendSmtpEmail(to=to, html_content=html_content, sender=sender, subject=subject)
api_response = api_instance.send_transac_email(send_smtp_email)
Should it take a day for them to send or is there a setting I am missing somewhere?
Thanks!