Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 May : Can I do this with TIdSmtp?
| Subject: | Can I do this with TIdSmtp? |
| Posted by: | "daniel" (danielp..@gd165.com) |
| Date: | Tue, 23 May 2006 23:31:38 |
I wrote a app to send mails.
But the mail server I use need DATA command like this:
DATA
my mail data.
.
It is to say, the '.' need a blank line before it, and after it.
But I found my mail with TIdSmtp's DATA command like this:
DATA
my mail data.
.
I don't know whether I descipt it clearly.
The mail I sent with TIdSmtp does not have a blank line before the '.', so
the mail server does not response the DATA command.
Can I insert a blank line before the '.' with TIdSmtp? I just want to a
little change.
Daniel