Smart Mailer ASP Support Product Page

This topic was archived

ERROR: msxml3.dll error '80004005'

Reported 06 May 2004 13:15:46
1
has this problem
06 May 2004 13:15:46 nathan green posted:
Hi,

I am getting the following error when i try to send an email with smart mailer:

msxml3.dll error '80004005'

Unspecified error

\\NAS08ENT\DOMAINS\C\COMPANIONS-2-TRAVEL.CO.UK\USER\HTDOCS\MEMBERS\../ScriptLibrary/incSmartMailer.asp, line 1159

Below is the troubled code:

' Get a specific URL via HTTP
Private Function GetUrl(SM_Url)
Dim objHttp, objText, HttpComponent
HttpComponent = GetHttpComponent()

on error resume next
set objHttp = Server.CreateObject(HttpComponent)
if err.number <> 0 then
Response.Write "ERROR: Can not get Template URL!<br>" & err.description & "<br>"
Response.End
end if
on error goto 0

objHttp.open "GET", SM_Url, false
objHttp.setRequestHeader "User-Agent", Request.ServerVariables("HTTP_USER_AGENT"
objHttp.Send ""
objText = objHttp.responseText
' Check notification validation
if (objHttp.status <> 200 ) then
' HTTP error handling
Response.Write "HTTP ERROR: " & objHttp.status & "<br>"
Response.Write "Returned:<br>" & objHttp.responseText
Response.End
end if

GetUrl = objText
End Function

Below is the smart mailer code from the page that is sending the mail:

<%
' Smart Mailer 1.0.5
' Send on submit of form RichTextEditor
if Request.ServerVariables("REQUEST_METHOD" = "POST" then
Server.ScriptTimeout = 300
Set sm1 = new SmartMailer
sm1.checkVersion "1.05"
sm1.contentCharset = "us-ascii"
Session.CodePage = sm1.getCodepage()
sm1.smtpSetup "", "", "", ""
sm1.pickup = ""
sm1.component = "cdo"
sm1.tmpFolder = ""
sm1.embedImages = false
sm1.progressBar = ""
sm1.ignore_errors = true
sm1.useQueue = false
sm1.setFrom cStr(Request.Form("from"), cStr(Request.Form("from")
sm1.setTo cStr(Request.Form("to"), cStr(Request.Form("to")
sm1.setCc "", ""
sm1.setBcc "", ""
sm1.Subject = "" & (cStr(Request.Form("subject")) & ""
' using template for body
sm1.setBody_Template_html "SEND_E-CARD_mailbody.asp?Image=" & cStr(Request.Form("image") & "&Email=" & cStr(Request.Form("email") & ""
' Attachments none
sm1.sendMail "one"
end if
SM_mailAction = getMailAction()
%>

Please help as soon as you can as the project is to go live very soon...

Many Thanks

Duncan Green
Notcon Internet

Replies

Replied 10 May 2004 15:28:46
10 May 2004 15:28:46 farhad khan replied:
Have you installed "msxml3" parser on your server/pc ?

If not get it either from Microsoft site or
www.software-factory.ch/software/mtg_download_en.htm#MSXML3



Farhad Khan
www.mxmania.de
Album MX Basic (ASP Free)
Album MX Professional (ASP )
Calendar MX Basic (ASP Free)
Calendar MX PROFESSIONAL (ASP)
PRIVATE MESSAGING SYSTEM (ASP Free)
ONLINE USER TRACKING (ASP Free)
Replied 10 May 2004 18:04:50
10 May 2004 18:04:50 nathan green replied:
Hi Farad,

We are using Microsoft Server 2003 so...

Shoul it not have it??

Many thanks for your help!!!

Duncan Green
Notcon Internet

<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
Have you installed "msxml3" parser on your server/pc ?

If not get it either from Microsoft site or
www.software-factory.ch/software/mtg_download_en.htm#MSXML3



Farhad Khan
www.mxmania.de
Album MX Basic (ASP Free)
Album MX Professional (ASP )
Calendar MX Basic (ASP Free)
Calendar MX PROFESSIONAL (ASP)
PRIVATE MESSAGING SYSTEM (ASP Free)
ONLINE USER TRACKING (ASP Free)
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
Replied 10 May 2004 22:22:58
10 May 2004 22:22:58 farhad khan replied:
It should be. Still it wouldn't be bad idea to install the latest version. As far as i remember there were some users having problem with Win 2003. Search the forum to see if ASP Smart mailer does work with Win 2003.

Farhad Khan
www.mxmania.de
Album MX Basic (ASP Free)
Album MX Professional (ASP )
Calendar MX Basic (ASP Free)
Calendar MX PROFESSIONAL (ASP)
PRIVATE MESSAGING SYSTEM (ASP Free)
ONLINE USER TRACKING (ASP Free)
Replied 11 May 2004 12:21:15
11 May 2004 12:21:15 nathan green replied:
I do have smart mailer working on some pages of the website but this instance has this error, i have removed smart mailer and reapplied it sveral times.
Replied 11 May 2004 13:09:59
11 May 2004 13:09:59 farhad khan replied:
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
I do have smart mailer working on some pages of the website but this instance has this error, i have removed smart mailer and reapplied it sveral times.
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>

&gt;' Send on submit of form RichTextEditor
Are you also using "Advanced Html Editor" on the same page ?? If yes as far as guesss you should post the problem in the "Advanced Html Editor Forum". The problem has to do something with the Advanced Html Editor.

Try sending out a simple text with Advanced Html Editor and see if the same code works out to make this sure.

I am sorry i don't use Advanced Html Editor so i can't help you further


Farhad Khan
www.mxmania.de
Album MX Basic (ASP Free)
Album MX Professional (ASP )
Calendar MX Basic (ASP Free)
Calendar MX PROFESSIONAL (ASP)
PRIVATE MESSAGING SYSTEM (ASP Free)
ONLINE USER TRACKING (ASP Free)

Reply to this topic