If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > mailing without using CDONTS

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-23-04, 01:45
j_sakthivel j_sakthivel is offline
Registered User
 
Join Date: Mar 2004
Location: chennai
Posts: 25
mailing without using CDONTS

hi all,
i have used CDONTS for mailing.that was not working.

so,is there any way to send mail using ASP...

i am eagerly awaiting for yours reply with code....

it will be very helpful to me...

Thanks
__________________
Sakthi
Reply With Quote
  #2 (permalink)  
Old 03-23-04, 13:37
vextout vextout is offline
Registered User
 
Join Date: Jan 2003
Location: New York
Posts: 160
Re: mailing without using CDONTS

I use to use CDonts then all of a sudden it stopped working

now i am using JMail

Its free and very easy to use

http://www.dimac.net/ <-- JMail

it comes with sample code

Quote:
Originally posted by j_sakthivel
hi all,
i have used CDONTS for mailing.that was not working.

so,is there any way to send mail using ASP...

i am eagerly awaiting for yours reply with code....

it will be very helpful to me...

Thanks
__________________
Beyond Limitation
Reply With Quote
  #3 (permalink)  
Old 03-23-04, 17:44
gyuan gyuan is offline
Registered User
 
Join Date: Dec 2003
Posts: 454
Do you know what is wrong with the CDonts? Did you try this?

<%
Sub SendEmail(mailfrom, mailto, subject, msg)
Dim objMail
Set objMail = CreateObject( "CDONTS.Newmail" )
objMail.From = mailfrom
objMail.To = mailto
objMail.Subject = subject
objMail.Body = msg
objMail.Send
Set objMail = Nothing
End Sub
%>
Reply With Quote
  #4 (permalink)  
Old 04-01-04, 18:48
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
You might try switching from CDONTS (which is being phased out) to the newer CDO such as can be seen in the E-mail Attachment example at http://www.asp101.com/samples
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On