+ Reply to Thread
Results 1 to 2 of 2

Thread: ASP Send Mail

  1. Join Date
    Feb 2005
    Location
    Massachusetts
    Posts
    1
    Rep Power
    0

    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.

  2. Join Date
    Jun 2002
    Location
    Serdang
    Posts
    22
    Rep Power
    0
    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

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Any free hosting can send mail?
    By xblue_skyx in forum Free Hosting Discussion Forum
    Replies: 6
    Last Post: 30-07-2007, 08:28 PM
  2. Replies: 0
    Last Post: 16-01-2006, 12:03 PM
  3. Send Details to my mail..HELP
    By ckfoong in forum Website Design
    Replies: 12
    Last Post: 02-11-2005, 11:31 PM
  4. Send & Receive MONEY via e-mail - in RM !!
    By canggih in forum E-Commerce
    Replies: 3
    Last Post: 09-06-2004, 07:37 PM
  5. send var
    By ciki in forum Website Programming
    Replies: 21
    Last Post: 19-02-2004, 03:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Optimization by vBSEO 3.5.0 RC1 PL1

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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79