Ilkka Ericsson wrote: > Hi ! > I have spent a lot of time to get embedded images in smtp:s > I have tryed a lot with Indy and Trichview:s demo. It works on the > most computors but some mobils will not take it. > If I use THtmlSmtpCli it works but I need to use TSslSmtpCli for the > most servers.
Unfortunately there doesn't exist a SSL enabled THtmlSmtpCli in ICSv7. However with a simple change in OverbyteIcsSmtpProt.pas it's possible to add SSL support to the THtmlSmtpCli: {code} {$IFDEF USE_SSL} THtmlSmtpCli = class(TSslSmtpCli) {$ELSE} THtmlSmtpCli = class(TSmtpCli) {$ENDIF} {code} You have to rebuild the ICS runtime and design-time packages after the change. Note that Object Inspector will always show the SSL properties and events, however they are usable only if "USE_SSL" is actually defined in the project options under conditional defines, a bit confusing, however it works. A cleaner solution is to use the TSslHtmlSmtpCli component from the ICS IPv6/FireMonkey Beta branch: http://wiki.overbyte.be/wiki/index.php/ICS_Download Please ask questions about ICS in the TWSocket mailing list. Subscribe here: http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket I sent a CC of this email to the mailing list as well. -- Arno -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be