Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 RD: rkMail support...
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

SheepCow
Starting Member

United Kingdom
3 Posts

Posted - 12 September 2000 :  18:33:21  Show Profile  Send SheepCow an ICQ Message
I use rkMail and I'm sure others do, so open up your inc_mail.asp file and add:

case "rkmail"
Set objNewMail = Server.CreateObject("rkMail.SMTP")
objNewMail.AddSMTPHost strMailServer
objNewMail.FromAddress = strSender
objNewMail.FromName = "yoursitename"
objNewMail.Subject = strSubject
objNewMail.AddRecipient "Forumer", strRecipients
objNewMail.TextBody = strMessage

on error resume next '## Ignore Errors
If Not objMail.SendMail Then
Err_Msg = Err_Msg & "<li>An email could not be sent, please check the email address.</li>"
End If

Then add this into your admin_config_email.asp

Find:
<option value="iismail"<% if (lcase(strMailMode)="iismail" or lcase(MailMode)="iismail") then Response.Write(" selected") %>>IISMail</option>
<option value="jmail"<% if (lcase(strMailMode)="jmail" or lcase(MailMode)="jmail") then Response.Write(" selected") %>>JMail</option>
<option value="smtp"<% if (lcase(strMailMode)="smtp" or lcase(MailMode)="smtp") then Response.Write(" selected") %>>SMTP</option>

them and add:

<option value="rkmail"<% if (lcase(strMailMode)="rkmail" or lcase(MailMode)="rkmail") then Response.Write(" selected") %>>rkMail</option>

And voila, it works!

SheepCow
Starting Member

United Kingdom
3 Posts

Posted - 13 September 2000 :  13:28:46  Show Profile  Send SheepCow an ICQ Message
I made a small mistake in that ;(

Replace:
If Not objMail.SendMail Then

with:
If Not objNewMail.SendMail Then



Go to Top of Page

PeterT
Starting Member

25 Posts

Posted - 13 September 2000 :  15:15:19  Show Profile
What is rkmail and how do I get it, do you have a website address

Peter Turnbull
Go to Top of Page

SheepCow
Starting Member

United Kingdom
3 Posts

Posted - 13 September 2000 :  16:29:50  Show Profile  Send SheepCow an ICQ Message
rkMail is a mail component...
It's a really good one, well I like it. =)

http://www.activerealms.co.za/rainking

That's the url i think...

Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.5 seconds. Powered By: Snitz Forums 2000 Version 3.4.07