d3nnis
Starting Member
3 Posts |
Posted - 01 March 2006 : 21:50:00
|
Hi Podge, I owned this server, I got both aspsmart and jmail installed but seems like jmail is not working (not sure why) but I have another script using aspsmart working fine.
Link to this component : http://www.aspsmart.com/aspSmartMail/
Here's what i change to the codes : On admin_config_email.asp, I changed
Dim theComponent(20) Dim theComponentName(20) Dim theComponentValue(20)
to
Dim theComponent(21) Dim theComponentName(21) Dim theComponentValue(21)
Added theComponent(21) = "aspSmartMail.SmartMail" after theComponent(20) = "VSEmail.SMTPSendMail"
Added theComponentName(21) = "aspSmartMail" after theComponentName(20) = "VSEmail"
Added theComponentValue(21) = "aspsmartmail" after theComponentValue(20) = "vsemail"
On inc_mail.asp, I added the below to the select case statement
case "aspsmartmail" Set objNewMail = CreateObject("aspSmartMail.SmartMail") objNewMail.Server = strMailServer objNewMail.SenderName = strFromName objNewMail.SenderAddress = strSender objNewMail.Recipients.Add strRecipients objNewMail.Subject = strSubject objNewMail.Body = strMessage 'on error resume next ' Ignore Errors objNewMail.SendMail
|
 |
|