Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
管理员邮件的大小限制为 16kb,在将其发送给管理员之前,是否有办法在 python gae 中确定电子邮件大小?我想发送多封电子邮件,而不是超过 1 封。
其他选择是尝试发送邮件并跟踪异常以及异常中断电子邮件,但预处理会有所帮助。
sys.getsizeof(object[, default])
获取大小
我没有在 gae 中使用过邮件,但大概您可以获得要发送的内容的大小,将其添加到空邮件的大小上,这可能会起作用。