in reply to CDONTS.dll
if that doesn't work try this in VB and let me know if this works:use Win32::OLE; $cd = Win32::OLE->new("CDONTS.NewMail") || die $!; $cd->{From}="test\@test.com"; $cd->{To}="test\@test.com"; $cd->{Subject}="test"; $cd->{Body}="test"; $cd->Send; print Win32::OLE->LastError();
The above VB code forces VB to use the same OLE interface as Perl does.Dim cp As Object Set cp = CreateObject("CDONTS.NewMail") With cp .To = "test@test.com" .From = "test@test.com" .Subject = "test" .Body = "test" .Send End With
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CDONTS.dll
by TAC (Initiate) on Aug 10, 2001 at 19:25 UTC | |
by c-era (Curate) on Aug 10, 2001 at 19:43 UTC |