 |
 |
How to check emails using Outlook / Outlook express? |
|
|
|
|
|
To create a new account in Outlook Express Go to Tools -> Accounts - > Mail Server TYPE is POP3 Your POP3 server is : mail.yourdomain.com Your SMTP server is mail.yourdomain.com (Please tick "My Outgoing mail server requires Authorization ") |
 |
 |
How to check emails using Netscape? |
|
|
|
|
|
Same as Outlook express with the exception that Netscape does not allow @ sign in the user name and hence you will have to use domain%domainname.com as username |
 |
 |
How to check emails on the website (webmail)? |
|
|
|
|
|
http://www.yourdomain.com:8383 (http:// followed by yourdomain dot coms and colon 8383
user id is your full email address user@domain.com |
 |
 |
How to create new email accounts? |
|
|
|
|
|
To create new account you will have to log on to your email control panel using the webmail interface. Only the default user domain@domain.com has the ability to administer users.
Go to USER ADMINISTRATION
Click ADD
Fill up the user name / password / details (leave other things blank) |
 |
 |
How to change email passwords? |
|
|
|
|
|
To change the password, you will have to logon to webmail interface. http://www.yourdomain.com:8383
click the change password option |
 |
 |
How do I send Emails using my website from outlook express (email client)? |
|
|
|
|
|
Typically for Sending (SMTP) you can user Your ISP's SMTP server.
However if you face any difficulty in SMTP with your ISP, we have SMTP facility on the server.
In outlook express, assign SMTP server as mail.domain.com
Also enable the "Authorization for outgoing mail server" |
 |
 |
How do I send or make a form working (formmail or form - to - email )? |
|
|
|
|
|
We use and prefer to use ASPemail to collect information for the form and get
it by email. Typically this is used in feedback / contact forms where visitors
on the website will fill in a small form that will be emailed to website owner.
set objmail=server.createobject("Persits.MailSender")
objmail.Host = "mail.domain.com"
objmail.from="email address"
objmail.FromName = "Your name"
objmail.AddAddress "email address of recipent"
objmail.username = "your email address"
objmail.password = "password"
objmail.subject = "subject"
objmail.body = "<html><body><font face='Arial,Helvetica,sans-serif' font
color='#003399'> Dear Subscriber,<BR><BR>"&chr(13)&chr(10)&_
"subjects.<BR>"&chr(13)&chr(10)&_
"msn : you@yourdomain.com</body></html>"
objmail.ishtml=true
x=objmail.send
|