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