Print Page | Close Window

jmail 2003 server problem

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=12466
Printed Date: 30 March 2026 at 9:20pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: jmail 2003 server problem
Posted By: byfobi
Subject: jmail 2003 server problem
Date Posted: 06 November 2004 at 7:52pm

------------------------------------------------------

Case "Jmail"

   'Create the e-mail server object
   Set objJMail = Server.CreateObject("JMail.SMTPMail")

   With objJMail
    'Out going SMTP mail server address
    .ServerAddress = strOutgoingMailServer

    'Who the e-mail is from
    .Sender = strFromEmailAddress
    .SenderName = strFromEmailName

    'Who the e-mail is sent to
    .AddRecipient strRecipientEmailAddress

    'The subject of the e-mail
    .Subject = strSubject

    'Set the e-mail body format (BodyHTML=HTML Body=Text)
    If blnHTML = True Then
     .HTMLBody = strEmailBodyMessage & strEmailBodyAppendMessage
    Else
     .Body = strEmailBodyMessage & strEmailBodyAppendMessage
    End If

    'Importance of the e-mail
    .Priority = 3

    'Send the e-mail
    If NOT strOutgoingMailServer = "mail.x.net" Then .Execute
   End With

   'Close the server mail object
   Set objJMail = Nothing

-------------------------------------------

W2K no problem

Windows 2003 problem

jmail ,smpt: user and pass where are function_send_mail.asp going in.

im sorry low eng.

plase help me

 

 



-------------
http://forum.takil.net



Replies:
Posted By: MadDog
Date Posted: 06 November 2004 at 8:01pm

Please post in the support forum since this is a WWF issue.

Check your smtp server. Try "localhost" and see if that works.



-------------
http://www.iportalx.net" rel="nofollow">


Posted By: Gullanian
Date Posted: 07 November 2004 at 5:29am
try smtp not smpt


Posted By: byfobi
Date Posted: 08 November 2004 at 9:29am

smtp to try no smtp server problem...


Set JMail = CreateObject("JMail.SMTPMail")
JMail.ServerAddress = "mail.x.net"
JMail.Message.MailServerUserName = "username"
JMail.Message.MailserverPassWord = "password"

where are you function_send_mail.asp write.

spam for control necessary



-------------
http://forum.takil.net


Posted By: dpyers
Date Posted: 08 November 2004 at 2:04pm

According to the faq on the dimac web site...

The error you're getting is a general error. JMail was unable to connect to the mailserver, perhaps an incorrect serveraddress has been set in
JMail.ServerAddress.
Enable logging by setting
JMail.Logging = true.Then read JMail.Log
with
Response.Write jmail log

for a more detailed error message.:

Message.Logging = true;
Response.Write( Message.Log );



-------------

Lead me not into temptation... I know the short cut, follow me.


Posted By: byfobi
Date Posted: 09 November 2004 at 2:04pm
oke no problem cdosys good thank webwiz users...

-------------
http://forum.takil.net



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net