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

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