 |
Email FAQs |
1. What POP and SMTP servers do
I use to access my emails? What login should i
use?
2. Why the emails I sent to Earthlink, Hotmail
and Yahoo end up in bulk/spam mail boxes?
3. Cannot log into the mail admin. I used main
account login and email with no luck.
4. How to add email accounts using mailadmin?
5. Do you have any sample script of using ASPEmail
to send mail?
6. How do I setup catch-all email?
7. Why when I try to login to WebMail client,
the page just refreshes and I can't login?
8. I can receive email but NOT send any email,
it says mail server not found. Why?
1. What POP and SMTP servers
do I use to access my emails? What login should
i use?
| |
mail.yourdomain.com for both POP and SMTP.
Use full email address, user@yourdomain.com,
to login.
|
2. Why the emails I sent to
Earthlink, Hotmail and Yahoo end up in bulk/spam
mail boxes?
| |
You need to add
Mail.Helo = "yourdomain mail"
That line will transmit the handshake header
to keep it out of spam/bulk email boxes.
|
3. Cannot log into the mail
admin. I used main account login and email with
no luck.
| |
You must use full email, admin@yourdomain.com.
|
4. How to add email accounts
using mailadmin?
| |
First, goto http://www.yourdomain.com/mailadmin,
then login using your user@yourdomain.com
as the email, and account password. Do not
check the 'System Admin' checkbox. Select
your domain name (bottom) and click the
'Show Domain Details' button. When come
to a new page, to add a mailbox/email, click
the 'Add MailBox' link, and enter the information.
|
5. Do you have any sample script
of using ASPEmail to send mail?
| |
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "mail.yourdomain.com"
Mail.From = "user@yourdomain.com"
Mail.FromName = "Your Name"
Mail.AddAddress "to@otherdomain.com"
Mail.AddBCC "cc@otherdomain.com"
Mail.Subject = "Subject of the email"
Mail.Body = "Body of the email"
On error resume next
Mail.Send
set Mail = nothing
If Err <> 0 Then
Response.Write "Error
when trying to send mail"
end if
|
6. How do I setup catch-all
email?
| |
Login to mailadmin, create an email account
called 'catchrest'. Back to the main mailadmin
page, click Edit for your domain name. Then
enter Catch All Account and click Update.
|
7. Why when I try to login to
WebMail client, the page just refreshes and I
can't login?
| |
This happens because your domain is being
or not transferred. If you already changed
the DNS, please allow 2-3 days for the transfer
to complete.
|
8. I can receive email but NOT send
any email, it says mail server not found. Why?
| |
It's possible that your ISP block external
SMTP and require you to use their SMTP server
to control spamming. Please check with them.
|
|