Print Page | Close Window

Mailing Problem

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=7524
Printed Date: 06 April 2026 at 1:18pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Mailing Problem
Posted By: LeFou
Subject: Mailing Problem
Date Posted: 23 November 2003 at 9:39am

Thank you in advence for your help.

I am using V7.6, on a private hosting company which use x3Jmail4 Version

The problem : I send activation mails  and receive mails  belonging the same hosting company  but while sending other mails hosted by other companies I got the message below.

 jmail.SMTPMail error '8000ffff'

The message was undeliverable. All servers failed to receive the message

/functions/functions_send_mail.asp, line 227

 

So if I understand, do I have to add a code to authenticate for my pop3 server or am I wrong ? where is the problem.

e.g :Mail.MailServerUserName = mailto:admin@domain.com - admin@domain.com
Mail.MailServerPassWord = "e-mail password"

 

 




Replies:
Posted By: LeFou
Date Posted: 24 November 2003 at 12:59pm
Any comments ?


Posted By: WebWiz-Bruce
Date Posted: 25 November 2003 at 9:04am
You will need to edit the functions_send_mail.asp file to add in your server authentication.

-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: LeFou
Date Posted: 25 November 2003 at 12:44pm
Thx, but although I edited many times by adding Jmail codes to authenticate my server, nope, unsuccessful! I searched dimac.net and I realized that it is an issue of JMail. There are many people (even here) who have the same problem. Is there any possibility to upgrade Jmail codes in functions_send_mail.asp bcuz, hosting companies use JMail v4.4


Posted By: WebWiz-Bruce
Date Posted: 25 November 2003 at 4:28pm
If you want to then go ahead.

Sorry I simply don't have the time to do it at the moment as I am trying to do the final year of a degree, earn enough money to live on, and run this site on my own with 100's of emails and support questions everyday.

-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: LeFou
Date Posted: 25 November 2003 at 4:39pm

Thx boRg,

I found the answer by changing some codes as follows. Users who want to use JMail component on a private hosting company which demand a SMTP authentication , need to use the following modifed code.

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

 'JMail component
  Case "Jmail"

   'Create the e-mail server object
   Set objJMail = Server.CreateObject("JMail.Message")
   With objJMail
    'Out going SMTP mail server address - no need here!!!
    'objJMail.ServerAddress = "mail.mywebsite.com:25" ' we are removing this part which make non-sense on authentication


    'Who the e-mail is from
    objJMail.from = strFromEmailAddress 'changing with .from
    objJMail.fromName = strFromEmailName 'changing with fromname

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

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

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

    'Importance of the e-mail
    objJMail.Priority = 3
objJMail.MailServerUserName = " mailto:admin@mywebsite.com - admin@mywebsite.com "
objJMail.MailServerPassWord = "mypassword"
    'Send the e-mail
    objJMail.Send("mail.mywebsite.com")
   End With

   'Close the server mail object
   Set objJMail = Nothing
---------------------------------------------------------



Posted By: LeFou
Date Posted: 25 November 2003 at 4:41pm

line

 objJMail.Send("mail.mywebsite.com") must be replaced with

 objJMail.Send("mywebsite.com") that's it




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