gpt4 book ai didi

ssl - 如何在 IdSMTP 的单个连接中发送多封电子邮件?

转载 作者:太空宇宙 更新时间:2023-11-03 13:49:57 27 4
gpt4 key购买 nike

我在 C++Builder 6.0 专业版上使用 Indy 10。

我的 SMTP 服务器在特定时间间隔内对连接数施加了限制,因此我需要使用同一连接发送多封电子邮件。是否可以?我该怎么做?

我已经能够连接并在每次连接时发送一封电子邮件。

非常感谢您的帮助。

最佳答案

您可以在一对 Connect()/Disconnect() 调用之间多次调用 TIdSMTP.Send(),调整TIdMessage 根据每个 Send() 调用的需要。

IdSMTP1.Connect;
try
// prepare TIdMessage as needed...
IdSMTP1.Send(IdMessage1);

// prepare TIdMessage as needed...
IdSMTP1.Send(IdMessage1);

// prepare TIdMessage as needed...
IdSMTP1.Send(IdMessage1);
finally
IdSMTP1.Disconnect;
end;

关于ssl - 如何在 IdSMTP 的单个连接中发送多封电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54366227/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com