Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Mailing Problem
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Mailing Problem

 Post Reply Post Reply
Author
LeFou View Drop Down
Newbie
Newbie


Joined: 23 November 2003
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote LeFou Quote  Post ReplyReply Direct Link To This Post Topic: Mailing Problem
    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 = admin@domain.com
Mail.MailServerPassWord = "e-mail password"

 

 

Back to Top
LeFou View Drop Down
Newbie
Newbie


Joined: 23 November 2003
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote LeFou Quote  Post ReplyReply Direct Link To This Post Posted: 24 November 2003 at 12:59pm
Any comments ?
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 25 November 2003 at 9:04am
You will need to edit the functions_send_mail.asp file to add in your server authentication.
Back to Top
LeFou View Drop Down
Newbie
Newbie


Joined: 23 November 2003
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote LeFou Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post 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.
Back to Top
LeFou View Drop Down
Newbie
Newbie


Joined: 23 November 2003
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote LeFou Quote  Post ReplyReply Direct Link To This Post 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 = "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
---------------------------------------------------------

Back to Top
LeFou View Drop Down
Newbie
Newbie


Joined: 23 November 2003
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote LeFou Quote  Post ReplyReply Direct Link To This Post Posted: 25 November 2003 at 4:41pm

line

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

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

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.