Print Page | Close Window

Mail Component Missing feature.

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=4076
Printed Date: 02 April 2026 at 1:22am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Mail Component Missing feature.
Posted By: BrownGhost
Subject: Mail Component Missing feature.
Date Posted: 05 July 2003 at 3:16am

Using version 7.01 WWF..

My serevre req that i set a username and password if i whant to send mails... but that i cant add to Jamil in admin... so that feature is missing in the forum... :((

can some one help he out here..
functions_send_mail.asp
i guss its here some code has to be added...
How do i add code here ?? for mail accound username and password...

  '******************************************
  '***     w3 JMail mail component      ****
  '******************************************

  'JMail component
  Case "Jmail"

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

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

    '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 strIncomingMailServer = "" Then .Execute
   End With

   'Close the server mail object
   Set objJMail = Nothing

 




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