Author |
Topic |
erick-flores
Starting Member
11 Posts |
Posted - 27 October 2006 : 15:04:30
|
I am having problem when a user register it supposed to send a notification email to my email, which is not working. Also the emails between users are not working. It looks like any of the e-mail part of my forum is working.
E-mail Server Conf: I have all the options checked to ON. And have my email address for the Administrator E-mail Address. I put the IP address of my E-mail exchange server for the E-mail Server Address, that should be ok, right?
I did not setup this forum, my boss did. She told me the e-mail part has not worked since the first day. However I download a fresh copy of the forum and replaced the inc_mail.asp file with a fresh copy. And same results.
FYI: I have only made one MOD. The UserGroups MOD.
Need help pleaseee< |
|
Podge
Support Moderator
Ireland
3775 Posts |
|
erick-flores
Starting Member
11 Posts |
Posted - 27 October 2006 : 16:36:53
|
Yes we do need authentication in order to send email via de exchange server. I havent cheked the logs. Any ideas...???< |
|
|
erick-flores
Starting Member
11 Posts |
Posted - 27 October 2006 : 16:40:48
|
The forum is in one of our server, its all internal in the same network.< |
|
|
Podge
Support Moderator
Ireland
3775 Posts |
|
erick-flores
Starting Member
11 Posts |
Posted - 31 October 2006 : 10:07:18
|
I have not edited the inc_mail.asp to include anything. I dont know what to edit in that file. Can you give me an example of what lines of code I need to change?
Thank you in advance< |
|
|
erick-flores
Starting Member
11 Posts |
Posted - 31 October 2006 : 10:34:55
|
OK, I did some search and I found the answer. Change the inc_mail.asp and worked like a champs, thanks!< |
|
|
Podge
Support Moderator
Ireland
3775 Posts |
|
erick-flores
Starting Member
11 Posts |
Posted - 31 October 2006 : 16:28:15
|
Actually, it did not work when the Restrict Registration = ON. I, as an administratior, am not getting the e-mail saying that a member wants to be a member of the forum. In other words, I am not getting the e-mail when a member tries to be a member. I do not know whats the problem, any ideas?< |
|
|
Podge
Support Moderator
Ireland
3775 Posts |
|
ruirib
Snitz Forums Admin
Portugal
26364 Posts |
|
erick-flores
Starting Member
11 Posts |
Posted - 31 October 2006 : 16:49:32
|
omg! I feel stupid...my boss was asking me for that feature and I though it was possible. Ok, thank you very much :)< |
|
|
Podge
Support Moderator
Ireland
3775 Posts |
|
erick-flores
Starting Member
11 Posts |
Posted - 31 October 2006 : 17:41:11
|
Do you know how to?< |
|
|
Podge
Support Moderator
Ireland
3775 Posts |
Posted - 31 October 2006 : 18:27:20
|
I haven't tested this but it should work.
Register.asp around line 598 find strMessage = strMessage & "You can change your information at our website by selecting the ""Profile"" link." & vbNewline & vbNewline
strMessage = strMessage & "Happy Posting!"
%>
<!--#INCLUDE FILE="inc_mail.asp" -->
<% After it add'Email Admin, a new member has registered
strRecipients = strSender
strFrom = strSender
strFromName = "Automatic Forum Email"
strSubject = "New member has registered on your forum."
strMessage = "A new member has registered with username: " & Request.Form("name") & vbNewLine
strMessage = strMessage & "on your forum here: " & strForumURL & vbNewLine & vbNewLine
strMessage = strMessage & "Regards," & VbNewLine
strMessage = strMessage & "Your Snitz forum."
%>
<!--#INCLUDE FILE="inc_mail.asp" -->
<%
If you get an error copy it and post it here.< |
Podge.
The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)
My Mods: CAPTCHA Mod | GateKeeper Mod Tutorial: Enable subscriptions on your board
Warning: The post above or below may contain nuts. |
|
|
ruirib
Snitz Forums Admin
Portugal
26364 Posts |
|
Topic |
|