Wrox Programmer Forums
|
ASP CDO As of Oct 5, 2005, this forum is now locked. No posts have been deleted. Please use "Classic ASP Professional" at: http://p2p.wrox.com/forum.asp?FORUM_ID=56 for discussions similar to the old ASP Pro Code Clinic or one of the other many remaining ASP and ASP.NET forums here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP CDO section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 3rd, 2004, 08:41 PM
Registered User
 
Join Date: Jun 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default HTTP 500 Internal Server Error

Hello
I was trying to send birthday e-card from my website but
HTTP 500 Internal Server Error occurs
(Microsoft VBScript runtime error '800a0046'
 Permission denied)

Here's my code:
<%
   title = "Happy Birthday "
   Set objMail = Server.CreateObject("CDONTS.NewMail")
   objMail.Importance = 1
   objMail.From = "[email protected]
   objMail.To = "[email protected]
   objMail.Subject = title

   ' this is my messages HTML
    strMsg = "Happy Birthday"
   ' set the format of the email to html, etc
   objMail.BodyFormat = 0
   objMail.MailFormat = 0
   objMail.Body = strMsg

   objMail.Send

  ' destroy the email object
  Set objMail = Nothing
%>

Hope u can help me!
Thanks in advance!


 
Old June 3rd, 2004, 08:43 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,285
Thanks: 0
Thanked 2 Times in 2 Posts
Default

You seem to be missing some closing "s. The lines with the email addresss seem quite messed up....

HTH,

Snib

<><
 
Old June 4th, 2004, 06:58 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 1,998
Thanks: 0
Thanked 3 Times in 3 Posts
Default

Hello,

You have the SMTP server running on that machine?

Brian





Similar Threads
Thread Thread Starter Forum Replies Last Post
HTTP/1.1 500 Internal Server Error Dmitriy General .NET 0 February 26th, 2008 04:50 PM
Http/1.1 500 Internal Server Error abinashpatra ASP.NET 1.0 and 1.1 Basics 17 May 10th, 2007 02:06 AM
HTTP 500 - Internal server error helmsly BOOK: Beginning ASP 3.0 11 November 8th, 2006 03:15 AM
HTTP 500: Internal Server Error cyberddindia Classic ASP Databases 4 October 5th, 2006 11:36 PM
HTTP 500 Internal Server Error hosefo81 Beginning PHP 3 October 22nd, 2003 08:24 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.