Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
175 views

ActiveX component can't create object: 'CDONTS.Newmail'

I'm getting this error on a windows 2003 server: Microsoft VBScript runtime error '800a01ad' ActiveX component can't create object: 'CDONTS.Newmail' I really don't want to have to change the code ...
0
votes
1answer
25 views

CDONTS TO and From mail to be stored in DB

I have an old application which sends mail using CDONTS in classic ASP. Now, I wanted to store the to and from addresses of every mail sent in a database. Dim a="' & 'FirstName ...
0
votes
0answers
53 views

The Return Path (MAIL FROM:<xxx>) is malformed or too long, SMTP Log File: SNDR=ESYNTAX

We have two servers sending out emails via SMTP. One is a scanner/copier that sends out scans as PDF attachments. The other is our web server running IIS and sending out emails using CDONTS under ...
0
votes
1answer
176 views

How to add CDO reference in an asp web page

I'm trying to create a new email in asp and send it to a mail server using CDO. I believe I need a reference for CDO or Send Email functionality. In the book it says use this: Set objNewMail = ...
0
votes
1answer
63 views

Does a certificate have to be valid to mail using CDOSYS and SMTPS?

Due to a limitation on our SMTP provder's side, we're having to use System.Web.Mail (deprecated), which is a wrapper around CDOSSYS. Because we'd like to avoid having to change multiple ...
0
votes
2answers
52 views

Error in class refering - CDONTS

I get an error at following line in my application : 'create NewMail object' Line 96: Function SendHTMLEMail (strFrom, strTo, strCC, strSubject, strBodyHTML) Line 97: Set objNewMail = ...
0
votes
1answer
154 views

Form to email script for asp.net

Cdonts used to be the de facto form to email script, I think for classic ASP. Does someone know of a better form to email script I could use for asp.net please? Thanks, James
0
votes
1answer
94 views

Attachments are 0 bytes for file sizes over 100k in Windows 2000 server IIS with ASP Classic

I'm using classic ASP to send an email with an attachment. It works fine for attachments under 100k, but anything larger than that gives me a zero-byte attachment. I've tried changing messages sizes ...