You can take a look at the following script. It can give you an example for using Dundas.Mailer
<%
‘Create an instance of our Mailer object.
Set mailObj = Server.CreateObject(”Dundas.Mailer”)
‘Configure our test email.
mailObj.SMTPRelayServers.Add “localhost”
mailObj.FromAddress = “you@yourdomain.com”
mailObj.FromName = “Your Name”
mailObj.Subject = “This is a test email”
mailObj.Body = “This mail is sent my using Dundas Mailer at 3inetwork hosting service”
‘Add a recipient address.
mailObj.TOs.Add “address@targetdomain.com”
‘We need to catch the error.
On Error Resume Next
mailObj.SendMail
If (Err <> 0) Then
Response.Write “There was an error sending the email: ” & Err.Description
End If
%>
categories:
helm control panel — posted by Ha NV. @ 3:13 pm
It’s very easy to use. You will need to create 2 files
1. upload.html
<html>
<body bgcolor=”#FFFFFF”>
<form method=”POST” enctype=”multipart/form-data” action=”upload.asp”>
<input type=”FILE” size=”40″ name=”FILE1″><br>
<input type=”FILE” size=”40″ name=”FILE2″><br>
<input type=”FILE” size=”40″ name=”FILE3″><br>
<input type=submit value=”Upload!”>
</form>
</body>
</html>
2. upload.asp
Dim objUpload
Set objUpload = Server.CreateObject(”Dundas.Upload.2″)
objUpload.MaxFileSize = 150000
objUpload.UseVirtualDir = True
objUpload.UseUniqueNames = False
objUpload.Save “/upload”
Set objUpload = Nothing
Response.Write “Upload done”
Test yourself 
categories:
helm control panel — posted by Ha NV. @ 3:11 pm
After creating a mySQL database in Helm, you will need to edit your code, update the database server as 192.168.1.11
With MSSQL database, you will need to use its port as 1533, beside the database server is 192.168.1.11
Do not use “localhost” cause the database server is not the same with web server.
categories:
helm control panel — posted by Ha NV. @ 3:10 pm
categories:
helm control panel — posted by Ha NV. @ 2:59 pm
f you are using DirectAdmin control panel and would like your pop3 users to be able to change their own email passwords without having to login to the control panel, simply give them this link:
http://www.domain.com:2222/CMD_CHANGE_EMAIL_PASSWORD
Replace www.domain.com is your domain.
categories:
directadmin control panel — posted by Ha NV. @ 2:47 pm