Öncelikle belirteyim forumda arama yaptım ve konuyla ilgili olarak yaklaşık 50 mesaj okudum ama IdSmtp.HOst ile ilgili sorunumu çözemedim.
Ayarlarım:
IdSmtp:
Host:smtp.hotpop.com
username:aktifborsa@HotPOP.com
password:aktif1285
authentication type:atLogin
idMessage:
from:aktifborsa@HotPOP.com
alici:kahraman1285@mynet.com
kullandığım kod:
Kod: Tümünü seç
try
gonder.Enabled := false;
with mesgMessage do
begin
Clear;
from.Text:=trim(Kimden.Text);
Recipients.Add.Text := Trim(Kime.Text);
Subject := Trim(Konu.Text);
Body.Assign(MemoMesaj.Lines);
end;
with smtpSendMail do
begin
Connect(5000);
Authenticate;
try
Send(mesgMessage); ///Hatayı burada alıyorum
finally
Disconnect;
end;
end;
Status('Completed');
finally
gonder.Enabled := True;
end;
Free SMTP Access - Send mail directly from your favorite client. http://www.hotpop.com un açıklaması
aldığım hata:

teşekkürler...