• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

CDO Mail Automation

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have the following code snippet in my asp in the apache server. After posting it, I never get any automated reply mail though my browser can display the asp file without any problem. Is that related to the missing SMTP server definition? If so, what SMTP server should I use? Should I use the one in the Apache server for the web hosting?

Any help is appreciated.

Rudy
===============================================
Set MyCDOMail = CreateObject("CDO.Message")

MyCDOMail.To= "pres@bcka.bc.ca;vp@bcka.bc.ca;rudyyeung@shaw.ca"
MyCDOMail.From= "webmaster@bcka.bc.ca"
MyCDOMail.Cc= ="rudyyeung@shaw.ca"
MyCDOMail.Bcc="rudyyeung@shaw.ca"
MyCDOMail.Subject="Steveston Sport Kite Preregistration"
MyCDOMail.TextBody= "I want to fly my kite"
MyCDOMail.Send
set MyCDOMail=nothing
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ASP is a Microsoft technology, it has nothing to do with Apache HTTP Server. If you wan't to use ASP, you will need to use IIS as your web server.
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As we don't have a forum dedicated to ASP, moved to the General Computing forum.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic