gpt4 book ai didi

delphi - 使用 TLS 从 DELPHI(Indy) 使用 Gmails 传出 SMTP

转载 作者:太空宇宙 更新时间:2023-11-03 12:39:35 25 4
gpt4 key购买 nike

我正在使用 INDY 在端口 25 上使用 SMTP 客户端发送电子邮件,没有问题。

现在我需要使用 Gmail 帐户发送电子邮件,为此我需要使用 TLS。

任何人都可以提供有关如何执行此操作的简单示例。

谢谢

最佳答案

此代码适用于 GMail:

begin
IDSMTP1 := TIDSMTP.Create;
IdSSLIOHandlerSocketOpenSSL1 := TIdSSLIOHandlerSocketOpenSSL.Create;
try

with IDSMTP1 do
begin
Host := srvr.Host;
Port := srvr.Port;
if (srvr.needAuthentication = 'Y') then
AuthType := satDefault
else
AuthType := satNone;
IOHandler := IdSSLIOHandlerSocketOpenSSL1;

if (srvr.secureMode = 'Y') then
UseTLS := utUseRequireTLS
else
UseTLS := utNoTLSSupport;

Username := srvr.Username;
Password := srvr.Password;
end;

idMBHTML := TIdMessageBuilderHTML.Create;
Idmessage1 := TIDMessage.Create;

try
with idMBHTML do
begin
enc := TEncoding.Unicode;
HTML.LoadFromStream(FEmlMsg.MsgBody, enc);
for c := 0 to FEmlMsg.Attachmnts.Count - 1 do
Attachments.Add(FEmlMsg.Attachmnts[c]);
FillMessage(IDMessage1);
end;

with Idmessage1 do
begin
Subject := FEmlMsg.MsgSubject;
From.Address := FEmlMsg.FromAddress;
From.Name := FEmlMsg.FromName;
Recipients.EMailAddresses := FEmlMsg.RecipientAddress;
if FEmlMsg.ReceiptRecipientAddress <> '' then
ReceiptRecipient.Address := FEmlMsg.ReceiptRecipientAddress;
if FEmlMsg.ReceiptRecipientName <> '' then
ReceiptRecipient.Name := FEmlMsg.ReceiptRecipientName;
end;

with IDSMTP1 do
begin
if not Connected then
Connect;
Send(IdMessage1);
end;

finally
Idmessage1.Free;
idMBHTML.Free;
end;
finally
IDSMTP1.Free;
IdSSLIOHandlerSocketOpenSSL1.Free;
end;
end;

关于delphi - 使用 TLS 从 DELPHI(Indy) 使用 Gmails 传出 SMTP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7037929/

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