TRENDING NEWS

POPULAR NEWS

Error Code 4 Is Coming When I Am Trying To Send A Mail To Email Id

Why am I getting an error code 45 when trying to open and email in by inbox?

There are many issues at this time. Many are unable to send, receive, sign in or out, or use any features in the mail.
Yahoo has their engineers working on the problems. They hope to have it fixed soon, In the meantime, you can click one of these links to access your mail, it's basic, no frills, but it works.
http://us.m.yahoo.com/p/mail or:
http://uk.m.yahoo.com/p/mail or:
http://id.m.yahoo.com/p/mail
I use the "us" link when Yahoo has problems.

You may also have a bad cache. Click Tools, Internet options.
Delete the cookies, temp files and history.
Click Ok and Restart the computer

Some are switching to a different browser, firefox,etc.
Make sure your java is updated
Also you can turn of the Compatibility view located when you click Tools. It worked for

Error code 45 for my viewing email from sowmya my email id is nsgrajan@yahoo.com?

Hi NS -

If you received an error code 45 when attempting to load a message, you'll need to contact us to resolve this error.

The following article has more information:

http://help.yahoo.com/kb/index?page=cont...

Thank you for choosing to use Yahoo!

Why do I keep getting errors when trying to access my mail? ?

Yahoo is still having some problems at the moment. Suggested cures range from Update Adobe Flash Player and Java script to clear IE7 cache, cookies, and browsing history. Different things seem to work for different people. It's causing attachments to not show, 999 errors where it won't let you do a particular action and some people cannot send receive delete or move mail. It's not just Vista either it's happening to some of us on XP. If all else fails go back to classic mail via this link. http://us.mg1.mail.yahoo.com/dc/optout?script=no click yes when asked do you want to opt out. Hope this helps.

I am getting error code 603 when trying to add contacts to my email address book ?

Code 603

Why am I getting "Error Code 14" when I try to open my Yahoo Mail?

I've had that happen a few times as well. I usually get right out of it, log back on and that seems to fix it. I think it's just another yahoo bug.

I am unable to send any emails at the moment. I have an error come up on page, a box with a red cross in.?

Dear another unlucky Yahoo Mail account holder,

Unfortunately, your Yahoo Mail account may be located on one of Yahoo server farm that receive the latest upgrade which often have problems. These are the farms that just received the latest upgrade: f308, f348, f396, f541, f555. You are very likely to see problems if your account is located on one them.

To find out which server farm you are on, look at the URL after login into Yahoo Mail. You will see something like:

http://us.f541.mail.yahoo.com

The “f” stand for farm (duh!) and the number following it is the farm number. So, in this example, the account is located on farm 541.

The best way to get this fix is to let the people that do server update know about the problem with the specific server. All you need to do is post a simple help request at the Yahoo! Mail usergroup. The Yahoo Mail Team often hang around there so there is a very good chance that they will be able to assist.

To post the request you need to go to:

http://groups.yahoo.com/group/Y-Mail/

Then click on the button “Join This Group”.
Sign-In.
Follow the 3 steps, then click “Join”.
Look on the left menu, Click on “Post”.
Under subject, type something like “[Help] Server f541 – Error code 1”
Under the text body, type some info regarding your account. For example:

“Hi Yahoo Mail Team,
My Yahoo ID xxx on server f_xxx is having error xxx. Please look into getting that server fix or migrate my account to another server.
Thank you,”

Of course, you want to replace the xxx with your Yahoo account ID, server farm number and error code number.


Another way to get help if you are feeling rich is to fork over $24.99 for Yahoo! Mail Express Help at 1-866-492-4664. Remember to call them back within 3 days for a full refund if the problem is not resolved.

Best of luck,
Musashi

If you use a desktop client such as Thunderbird, it is configured to use an IMAP server to read email and an SMTP server to send mail. While in theory you can connect directly to a recipient’s inbound mailserver, in practice sometimes there are firewalls in place blocking port 25 - e.g. I cannot send mail directly from home because my ISP blocks port 25 to discourage virus-generated mail.If your client cannot contact your SMTP server ffor some reason (network down, no wifi signal, configuration error), it may generate a popup that says “failed to send”. If the message goes out but the recipient’s server does not have that address, your server will generate a nondelivery message which you will receive as email.

Trying to attach a file to my e-mail.got error message that say that I am over 25 mb.what is causing this?

Yahoo's limit is 25 MB for free accounts and 25 MB for Plus, but often even that size fails to attach and send - or is rejected by the receiver's server as too large. There are many free services which allow sending files of 50 MB or even 2 GB. Set up an account once you decide which service to use. Once uploaded, the file(s) can be downloaded after sending the link to the recipient. The files are available for a limited time, depending on the service used.

Too Big for Email - Send up to 2 GB at the same time (8 hours of upload time) Upload multiple files at the same time, with password protection, delivery receipt, encryption and room for a message too.
http://www.toobigforemail.com/
Dropbox (Free) - Sharing isn't one-way; your recipients can upload files for you as well. The free version lets you upload up to 2 GB's of files. You can share the files for 30 days.
http://www.dropbox.com
MailBigFile - Send files of up to 1GB (= 1000 MB) for free.
http://www.mailbigfile.com/
Transfer Big Files - Send files of up to 1GB (= 1000 MB) for free.
https://www.transferbigfiles.com/
YouSendIt Free service - Send very large mails (attachments, up to 1 GB = 1000 Mb).
https://www.yousendit.com/

Yup. I did it myself (helped). I’m just going to paste the program below, and you can take a look. It can also send text messages. If you know PYTHON, you can add a few more carriers, but that’s up to you.import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
Type = input("Enter 1 for eMail, 2 for SMS: ")
toaddr = 0
if Type=='1':
toaddr = input("Enter to address: ")
else:
Provider = input("1 for Sprint, 2 for AT&T, and 3 for Verizon: ")
Mobile = input("Enter the mobile number: ")
if Provider=='1':
toaddr = str(Mobile) + "@messaging.sprintpcs.com"
if Provider=='2':
toaddr = str(Mobile) + '@txt.att.net'
if Provider=='3':
toaddr = str(Mobile) + '@tmomail.net'
head = input("Enter your subject: ")
body = input("Enter your message: ")
fromaddr = input("Enter the 'From Address'(example@gmail.com): ")
msg = MIMEMultipart()
msg['From'] = fromaddr
msg['To'] = toaddr
msg['Subject'] = head
password = input("Enter the from address password: ")
msg.attach(MIMEText(body, 'plain'))
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login(fromaddr, password)
text = msg.as_string()
server.sendmail(fromaddr, toaddr, text)
print ("Your message was sent")
server.quit()
I hoped this helped.

TRENDING NEWS