delphi - SSL Email 발송 (IdSMTP 사용)
delphi 에서 SSL 이메일을 발송하는 정보를 담은 사이트 주소
Delphi Email mit SSL Verschlüsselung versenden (Windows, Android, iOS) - Delphi-PRAXiS
AW: Email mit SSL Verschlüsselung versenden (Windows, Android, iOS) 27. Jul 2014, 10:56 iOS habe ich leider nicht, aber einen "Absturz" auf Windows am Programmende konnte ich durch Freigabe des TSSLEmail Objekts nach dem Senden der Mail erreichen. Ursa
www.delphipraxis.net
https://mikejustin.wordpress.com/2014/07/27/send-secured-smtp-email-from-delphi-applications/
Send secure SMTP email from Delphi applications
Introduction Sending email from Windows, Android and iOS Delphi applications over public SMTP servers requires an encrypted connection. Internet Direct (Indy) configuration for SSL/TLS connections …
mikejustin.wordpress.com
https://blog.marcocantu.com/blog/using_ssl_delphi_ios.html
Using Open SSL in Delphi iOS
May 24, 2013 Delphi uses OpenSSL for Indy's HTTP support, but also for Amazon and Azure cloud services. Here are some tips on how to get it up and running. Delphi uses OpenSSL for Indy's HTTP support, but also for Amazon and Azure cloud services. it is a
blog.marcocantu.com
Index of /SSL
indy.fulgan.com
텍스메일만 보낼 경우 IdMessage.ContentType = 'text/plain'
첨부파일이 있을 경우 IdMessage.ContentType = 'mutipart/mixed'
uses IdAttachmentFile;
if FileExists('test.txt') then
TIdAttachmentFile.Create(IdMessage.MessageParts, 'test.txt');