Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Programming

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 22-02-2005, 01:07 AM
New kid on the block
 
Join Date: Feb 2005
Location: Massachusetts
Posts: 1
Rep Power: 0
GMCoolong is on a distinguished road
ASP Send Mail

I have found code to put into my asp form to send an email (using CDONTS)

However, it doesn't work.

I think the reason that it doesn't work is because I am running a Windows 2000 Server with Microsoft Exchange 2000. Because Exchange is loaded, there is no "default SMTP server" in IIS. The default smtp server is in exchange.

I believe that somehow CDONTS has to be redirected to look in the exchange folder, but I can not find any documentation on how to do that.

Can anyone please help?

Thank you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 26-04-2005, 02:29 PM
Rizalnet's Avatar
Novice Webmaster
 
Join Date: Jun 2002
Location: Serdang
Posts: 22
Rep Power: 0
Rizalnet is on a distinguished road
try this one...

<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.TextBody="This is a message."
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") _
="smtp.server.com"
'Server port
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") _
=25
myMail.Configuration.Fields.Update
myMail.Send
%>


http://www.w3schools.com/asp/asp_send_email.asp
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Snap, Send & Win !!! lina News and Announcements 0 06-07-2006 12:06 PM
E-Mail Backup, Email Defense, E-Mail Marketing! Get one for your website! starsearcher Web Hosting Offers 0 16-01-2006 12:03 PM
Send Details to my mail..HELP ckfoong Website Design 12 02-11-2005 11:31 PM
Send & Receive MONEY via e-mail - in RM !! canggih E-Commerce 3 09-06-2004 07:37 PM
send var ciki Website Programming 21 19-02-2004 03:28 PM



All times are GMT +8. The time now is 02:23 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60