delphi 에서 SSL 이메일을 발송하는 정보를 담은 사이트 주소
https://mikejustin.wordpress.com/2014/07/27/send-secured-smtp-email-from-delphi-applications/
https://blog.marcocantu.com/blog/using_ssl_delphi_ios.html
텍스메일만 보낼 경우 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 |