[twsocket] Built with/Powered by logos

2012-12-08 Thread Raymond Kennington
Hi. There are 3 logos on the Overbyte main page: Overbyte ICS Internet Component Suite I seek permission to use these in my AboutBox in my application as one of the Development Tools. May I, or what do you prefer me to use to reference your company and the

Re: [twsocket] How can I know the IP address?

2012-12-17 Thread Raymond Kennington
Hi. I used the function below (from the WWW). It uses GetHostname in one of the paths, which you might find useful for distinguishing the IP addresses. Raymond --- Dr. Raymond Kennington function GetIPAddress(var IPAddress : String) : Boolean; type pu_long = ^u_long; var varTWSAData

Re: [twsocket] Skype like application

2012-12-23 Thread Raymond Kennington
Hi Paul. If you have little time and want a good job done, or to get for sound advice, pay Francois Piette to do the preliminaries for you. The demos show how to do many things with sockets, but to get a particular job done, like I needed, it is just better to pay for some hours. 10 hours

[twsocket] ...SMTPClient

2013-01-26 Thread Raymond Kennington
Hello. One of my developed has been using this component to send messages for 13 years. No problems! Thanks!! Now I am incorporating the code into another project, and I would rather use Bcc instead of cc - because I don't want the receiver to know who else the message is being sent to. Is

Re: [twsocket] ...SMTPClient

2013-01-27 Thread Raymond Kennington
handle this quantity? What are the alternative ways? (You mentioned this was the easiest way.) It would be best for me if I could just set one name for the Bcc. Thanks. Raymond Will On 27/01/2013 03:03, Arno Garrels wrote: Raymond Kennington wrote: Hello. One of my developed has been using

Re: [twsocket] ...SMTPClient

2013-01-28 Thread Raymond Kennington
Hello Arno. Thanks for all this information. I will have to investigate this with my ISP. My use would be with my (hoped-for) customers. I'm planning ahead, as I don't want to have to change the code once I place my product the market. It's definitely not spam, and customers choose whether

Re: [twsocket] ...SMTPClient

2013-01-29 Thread Raymond Kennington
Hello Angus. In addition to my other message, it is so much faster to send multiple recipients in the To rather then sending them individually. Raymond -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket

Re: [twsocket] SMTPCli: Use with non-local site to send emails?

2013-01-31 Thread Raymond Kennington
Hi Angus. The component will use any SMTP server you specify, although you'll usually need authentication for any SMTP other than that of your ISP. Angus I set the Host to be smtp.xyz.com, AuthType: SMTPAuthLogin, then call Connect(). The password is set later, which is wrong, but when

Re: [twsocket] SMTPCli: Use with non-local site to send emails?

2013-02-01 Thread Raymond Kennington
It's working now! Connect() smtpConnect: if no authentication Helo(); else Ehlo(); end; end; smtpHelo: begin ... MailFrom(); end; end; smtpEhlo: