Click to See Complete Forum and Search --> : how to send a mail from the webpage without using the MS Exchage or anything like that?
jusstujoo
June 29th, 2001, 04:53 PM
hi,
how can i send a mail from my web page without using any exchange server???
any help will be greatly appriciated.
thanx.
bestRegards,
-jusstujoo!
Keep it as simple as possible, but no simpler
--Albert Einstein
pmmbala
July 6th, 2001, 02:05 AM
hi
Using CDONTS u can send a mail.
FOR EX
Set objSendMail = CreateObject("CDONTS.NewMail")
objSendMail.From = "from@wjo.com"
objSendMail.To = "to@wjo.com"
objSendMail.Subject = "Hi" objSendMail.Body = "HAPPY BIRTHDAY" objSendMail.Send
Set objSendMail = Nothing
pmmbala_old
July 6th, 2001, 02:05 AM
hi
Using CDONTS u can send a mail.
FOR EX
Set objSendMail = CreateObject("CDONTS.NewMail")
objSendMail.From = "from@wjo.com"
objSendMail.To = "to@wjo.com"
objSendMail.Subject = "Hi" objSendMail.Body = "HAPPY BIRTHDAY" objSendMail.Send
Set objSendMail = Nothing
joke_com
July 23rd, 2001, 04:10 AM
Hi
It has no error in pages, but nothing happens... there r no email send to address I put in objSendMail.To ... What and Where should I config before try this code?
Thanks
pmmbala
July 23rd, 2001, 05:34 AM
HI,
first it should be a asp file not a html file. within sever script tag u have to paste that code. and give a valid email address..
Thanks for the reply
bala
Bala
Prelude Solution Providers (P) Ltd.
Chennai.India
pmmbala_old
July 23rd, 2001, 05:34 AM
HI,
first it should be a asp file not a html file. within sever script tag u have to paste that code. and give a valid email address..
Thanks for the reply
bala
Bala
Prelude Solution Providers (P) Ltd.
Chennai.India
joke_com
July 23rd, 2001, 06:06 AM
Hi,
I already code it in .asp file...
after I test this code, it has file .eml in directory mailroot/queue but it's not send mail to e-mail address I put in. And e-mail is valid too.
Thanks in advance
Joke
joke_com
July 23rd, 2001, 06:09 AM
Hi again,
I found problem now... It's my DNS server point to bad server..
thanks
Bnt
July 27th, 2001, 05:08 AM
Hi Joke,
I'm having the exact same problem, the mail is created and put in the message queue but it isn't sent. If you get an answer to this could someone please mail me at bntymvios@hotmail.com - it will be greatly appreciated.
Thanks
Byron
Eddie Leong
August 14th, 2001, 01:42 PM
hi,
Where to get this CDONTS? and where should I place at?
Thank you
ASP Beginner
Eddie
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.