hello,.
i trying to send email with blat and smtp


thats my configuration:
blat -install servername sendername -1 -5022

telnetconnection to the exchangeserver with port 5022 works

and here are the syntax
blat test.txt -to meineadresse@firma.de
Blat v2.5.0 w/GSS encryption (build : Sep 14 2005 22:46:29)

Sending test.txt to meineadresse@firma.de
Login name is testtd
Error: Not a socket.
Error: Not a socket.

sorry for the bad english ;-)
i hope you can help me

RE: blatmailen doesnt work by Leemi

Leemi
Thu Mar 30 09:14:39 CST 2006

Hi Fabian:

>hello,.
>i trying to send email with blat and smtp


Did you try the code in this link?

http://fox.wikis.com/__snapshot/BlatEmail.htm

I hope this helps.

This posting is provided "AS IS" with no warranties, and confers no rights.

Sincerely,
Microsoft FoxPro Technical Support
Lee Mitchell

*-- VFP9 HAS ARRIVED!! --*
Read about all the new features of VFP9 here:
http://msdn.microsoft.com/vfoxpro/

*--Purchase VFP 9.0 here:
http://www.microsoft.com/PRODUCTS/info/product.aspx?view=22&pcid=54787e64-52
69-4500-8bf2-3f06689f4ab3&type=ovr

Keep an eye on the product lifecycle for Visual FoxPro here:
http://support.microsoft.com/gp/lifeselectindex
- VFP5 Mainstream Support retired June 30th, 2003
- VFP6 Mainstream Support retired Sept. 30th, 2003



Re: blatmailen doesnt work by xircon

xircon
Thu Mar 30 09:29:51 CST 2006

On 29 Mar 2006 22:40:51 -0800, Fabian wrote:

> hello,.
> i trying to send email with blat and smtp
>
>
> thats my configuration:
> blat -install servername sendername -1 -5022
>
> telnetconnection to the exchangeserver with port 5022 works
>
> and here are the syntax
> blat test.txt -to meineadresse@firma.de
> Blat v2.5.0 w/GSS encryption (build : Sep 14 2005 22:46:29)
>
> Sending test.txt to meineadresse@firma.de
> Login name is testtd
> Error: Not a socket.
> Error: Not a socket.
>
> sorry for the bad english ;-)
> i hope you can help me

dll_name="blat.dll"
dll_name=fullpath(dll_name)
DECLARE INTEGER Send in &dll_name STRING blatstring
teststring="blatdll.prg -t dest@abc.com -s 'test' -base64 -attach blat.dll"
result=Send(teststring)
? result

Of course Blat has to be configured corectly - see
http://groups.yahoo.com/group/blat for help

HTH

Steve