Hi everyon,
I was wondering if anyone has used MailEnable Pro with Web Wiz Forums? I have tried a few things and still am unable to send e-mail. Below is what I have done.
on function_send_mail.asp:
Dim objMailEnable
and added the following:
'********************************************
'*** MailEnable Comp ver. 1.0 ***
'********************************************
'MailEnable component
Case "MailEnable"
If Len(Trim("" & strRecipientEmailAddress)) > 0 Then
Dim oMail
Err.Clear
On Error Resume Next
Set Mail = server.CreateObject("MEMail.Message")
If Err.Number <> 0 Then
Response.Write "<BR><STRONG>Error:</STRONG>Could not create MailEnable Component object<BR>"
Else
Mail.mailTo = strRecipientEmailAddress
Mail.mailFrom = strFromEmailAddress
Mail.MailFromDisplayName = strFromEmailName
Mail.Subject = strSubject
Mail.MessageBody = strEmailBodyMessage & strEmailBodyAppendMessage
Mail.SendMessage
End If
Set Mail = Nothing
On Error Goto 0
End If
I have also added MailEnable to the email_notify_configure.asp page
I'm still searching through all the asp pages to see if I'm missing something, but any help would be appreciated.
Thanks in advance!