Que Valued Newbie

Joined: 25 Aug 2001 Posts: 38 Location: Newaygo, MICH
|
Posted: Fri Aug 16, 2002 1:50 pm Post subject: smtp send with vdsipp |
|
|
To send a mail message, I do...
| Code: |
INTERNET SMTP,CREATE,1
INTERNET SMTP,THREADS,1,ON
INTERNET SMTP,AUTHENTICATION,1,login,pwd
INTERNET SMTP,CONNECT,1,smtp.server.com,25
rem this causes a SMTP1ONCONNECT event... so far so good...
rem this prog takes sendto,subject,text as command line params %1 %2 %3
INTERNET SMTP,USERAGENT,1,MyVDSMailer
INTERNET SMTP,FROM,1,"Que"
INTERNET SMTP,TO,1,%1
INTERNET SMTP,SUBJECT,1,%2
INTERNET SMTP,BODY,1,%3
INTERNET SMTP,replyto,1,"me@work.com"
INTERNET SMTP,PRIORITY,1,3
INTERNET SMTP,SEND,1
rem with threads on this should cause a SMTP1ONSENDDONE event
|
My problem is that I can connect to the server, but when I try to send, I do not get an SMTP1ONSendDONe event. How can I troubleshoot this? What is the problem likely to be. My code does work with another SMTP server that I'm aware of, but not this one. Any help would be greatly appreciated.
Thx. [/code] _________________ Que |
|