FMX/Tip

delphi - SSL Email 발송 (IdSMTP 사용)

지병철 2021. 5. 27. 09:27

delphi 에서 SSL 이메일을 발송하는 정보를 담은 사이트 주소

https://www.delphipraxis.net/181225-email-mit-ssl-verschluesselung-versenden-windows-android-ios.html

 

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

https://indy.fulgan.com/SSL/

 

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');

'FMX > Tip' 카테고리의 다른 글

delphi android 32/62 bits 모두 사용할 수 있는 버전 만들기  (0) 2021.06.01
Embarcadero FMX - (Android / iOS) Custom Font 사용  (0) 2021.05.31
delphi shortkey  (0) 2021.05.07
FMX - JSON 정리  (0) 2018.10.30
FMX - splash Screen 만들기  (0) 2017.12.21