[Fixed]-Invalid SMTPAPI Header: send_at must be a timestamp

1👍

set_send_at() takes an integer argument, but you are passing it a dictionary ({"send_at": 1472058300}). This is invalid and causes the error.

Change it to:

header.set_send_at(1472058300)

Leave a comment