使用 Python 检查电子邮件大小限制

发布于 2024-11-08 07:22:38 字数 161 浏览 2 评论 0原文

有人可以告诉我,如何检查电子邮件的大小限制。 因此,如果所有附件一起超出了限制,我可以在更多消息中发送它们。假设每个附件都小于限制大小。

我使用 python 2.7(电子邮件smtplib 模块)。

任何建议、样品、链接..将不胜感激。

Can someone tell me, how could I check the size limit of an email message.
So, if all attachements together exceeded the limit, I could send them in more messages. And lets say that each attachement is smaller than limit size.

Im using python 2.7 (email, smtplib modules).

Any suggestions, samples, links.. would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国粹 2024-11-15 07:22:38

好的,我发现了:)

import smtplib    
smtp = smtplib.SMTP('server.name')    
smtp.ehlo()    
max_limit_in_bytes = int( smtp.esmtp_features['size'] )

这会返回整个电子邮件(包含标题、主题、消息文本...)的大小限制(以字节为单位)。

Ok, I found that out :)

import smtplib    
smtp = smtplib.SMTP('server.name')    
smtp.ehlo()    
max_limit_in_bytes = int( smtp.esmtp_features['size'] )

This returns size limit (in bytes) of entire email (with header, subject, message text...).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文