Masking my pop mail through iCloud mail

I use pop mail from godaddy. So mails across my apple device is not synced. Is there a way to route my mails through iCloud mails so that all incoming mails come to my iCloud mailbox and all receivers of my outgoing mail sees my actual mail I'd even though oak sending it through my iCloud mail. Ian trying to find out an alternative to the expensive imap mail option from godaddy.

Who is the POP mail provider? When you removed the account, did you verify that you entered the username and password in all of the locations, even where it said optional? When you see the error, is this for receiving mail, sending mail, or both?

Similar Messages

  • Outgoing mail through iCloud

    When I look at my Preferences in Apple Mail, I do not have iCloud listed as a server
    therefore I cannot sent any outgoing mail through the iCloud servers.  What do I need to change so that iCloud is listed as an outgoing server?
    Thank you.

    Yes they are both from my MacPro.  I just clicked on the "+" and obtained the second screen.  As far as I know both of my computers are on iCloud.  At least when I change the Address Book or my Safari Bookmarks on my MacPro, they are changed on the MacBook.
    These are my system preferences on the MacPro
    When I click on iCloud, this is what I get:
    So I assume that the MacPro is on iCloud, unless you tell me otherwise.

  • I cannot get mail through icloud.

    After upgrading to OSX, I cannot get mail through the icloud. All relevant boxes are ticked; i can update calendars, messages with both my Mac and iPhone, but there is no mail coming through on my Mac, I can get mail on the phone. I have had to use outlook to get mail.
    Please advise

    Go to System Preferences>iCloud and confirm that you have signed into your iCloud account and have checked Mail.  If you have, try going to System Preferences>iCloud, uncheck Mail, restart your Mac, then go back and check Mail.  If that doesn't fix things, go to System Preferences>iCloud, click Sign Out, choose Delete at all of the prompts (your data will still be in iCloud), restart your Mac, then go back and sign back in.  Your iCloud data will reappear on your Mac after a brief delay as it redownloads.

  • Can't send mail through iCloud (Web)

    I've been uable to get mail from Mail on my MBP for 18 hours now. It works on my iPad & iPhone and just now strted to work on iCloud web. I've been receiving email on iCloud web NOT to send mail. When I Reply to an email and hit the SEND button, the "TO" address dissapears and the reply is nowhere to be found. Not in Draft, not in Sent. NOWHERE. What's going on Apple. ALL MY THREE me.com accounts in Mail (MBP) have been offline for 18 hours now!!

    Hey vastphoto,
    Not sure if this helps, but I've been unable to sync my icloud mail with the mac mail client (I think that's what you say your problem is) for the past couple of weeks. I stopped today and looked up the issue and did a little change and voila, it seems to be working fine now.
    I'm not sure if this IS the fix and I'm honestly perplexed as to why you'd need to do this, BUT…
    Open the mail client ->Preferences (Select iCloud account) -> Account Information (initial display) -> Under the 'Outgoing Mail Server (SMTP):
    check and see if it says: smtp.me.com
    if so then Click pull down -> Edit SMTP Server List (select smtp.me.com) -> change 'Server Name' (towards the bottom) to: smtp.icloud.com -> Click OK -> save it and 'maaaaaybeeeeeee' it's fixed?
    This seemed to work for me, not sure why, but it did. Good luck.

  • TS4002 Trouble changing from Yahoo mail to iCloud mail

    I use yahoo mail on macbook pro.. As the mail was repeatedly asking me to check my account password, i considered switching to iCloud mail with @me.com address. I set up the icloud mail account and was able to send and recieve mail from the icloud account. I was also able to forward the new inbox mail from yahoo to icloud.
    However , i am unable to transfer my mail (roughly 400) in my Yahoo inbox to icloud inbox.
    I tried selecting all the mails in Yahoo inbox and attempted Moving as well as Copying them to iCloud inbox. Both did not work.
    Only a couple of mails (around 10) got transferred and nothing was happening. No error message is also shown.
    When i tried to restart the mac, the mail does not shut down and after forcequitting it , a message popped up saying that the 390 mails could not be transferred.
    Can any body help me with this....

    You need to be more patient, you are moving your emails over the internet, it takes a while. Do it again and don't interrupt it this time.

  • Urgent!!!! Problem in sending mail through yahoo mail server

    Hi
    I have a yahoo account and I want to send email through yahoo mail server
    using my java program. My program supports SMTP server authentication.
    But when I connect to the yahoo mail server(smtp.mail.yahoo.com) I got this error
    javax.mail.MessagingException: 521 yahoo.com closing transmission channel. You
    must be pop-authenticated before you can use this smtp server, and you must use
    your yahoo mail address for the Sender/From field.
    This is my program
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
         Properties properties;
         Session session;
         Message message;
         JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
              properties=new Properties();
              properties.put("mail.smtp.host",mailHost);
              ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
              session=Session.getInstance(properties,auth);
              message=new MimeMessage(session);
         } //**********************************************************************end constructor
         void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
              properties.put("mail.from",messageFrom);
              InternetAddress[] address={ new InternetAddress(messageTo) };
              message.setFrom(new InternetAddress(messageFrom));
              message.setRecipients(Message.RecipientType.TO,address);
              message.setSubject(subject);
              message.setContent(messageBody,"text/plain");
              Transport transport=session.getTransport(address[0]);
              transport.addConnectionListener(new ConnectionHandler());
              transport.addTransportListener(new TransportHandler());
              transport.connect();
              transport.sendMessage(message,address);
         } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
         public void opened(ConnectionEvent e)
              System.out.println("connection opened");
         public void disconnected(ConnectionEvent e)
              System.out.println("connection disconnected");
         public void closed(ConnectionEvent e)
              System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
         public void messageDelivered(TransportAdapter e)
              System.out.println("message delivered");
         public void messageNotDelivered(TransportAdapter e)
              System.out.println("message NOT delivered");
         public void messagePartiallyDelivered(TransportAdapter e)
              System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
         String smtpUsername = null;
         String smtpPassword = null;
         public ServerAuthenticate(String username, String password)
              smtpUsername = username;
              smtpPassword = password;
         protected PasswordAuthentication getPasswordAuthentication()
              return new PasswordAuthentication(smtpUsername,smtpPassword);
    } //*************************************************************************************end main
    I use this code to call the program.
    JavaMailUserAgent jmail=new JavaMailUserAgent("smtp.mail.yahoo.com","my_yahoo_username","my_yahoo_password");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    Could you pls tell me why do I get this error eventhough My program has server authentication.
    Is this my program error.Please Helpl me what to do to correct this problem.
    Please include a sample code
    thanks for listening
    sabu

    I have used the code below to send mail from yahoo account,but I got the error message like below,what I should configure in pop3 of yahoo account????
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
    Properties properties;
    Session session;
    Message message;
    JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
    properties=new Properties();
    properties.put("mail.smtp.host",mailHost);
    ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
    session=Session.getInstance(properties,auth);
    message=new MimeMessage(session);
    //**********************************************************************end constructor
    void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
    properties.put("mail.from",messageFrom);
    InternetAddress[] address={ new InternetAddress(messageTo) };
    message.setFrom(new InternetAddress(messageFrom));
    message.setRecipients(Message.RecipientType.TO,address);
    message.setSubject(subject);
    message.setContent(messageBody,"text/plain");
    Transport transport=session.getTransport(address[0]);
    transport.addConnectionListener(new ConnectionHandler());
    transport.addTransportListener(new TransportHandler());
    transport.connect();
    transport.sendMessage(message,address);
    } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
    public void opened(ConnectionEvent e)
    System.out.println("connection opened");
    public void disconnected(ConnectionEvent e)
    System.out.println("connection disconnected");
    public void closed(ConnectionEvent e)
    System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
    public void messageDelivered(TransportAdapter e)
    System.out.println("message delivered");
    public void messageNotDelivered(TransportAdapter e)
    System.out.println("message NOT delivered");
    public void messagePartiallyDelivered(TransportAdapter e)
    System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
    String smtpUsername = null;
    String smtpPassword = null;
    public ServerAuthenticate(String username, String password)
    smtpUsername = username;
    smtpPassword = password;
    protected PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication(smtpUsername,smtpPassword);
    public static void main(String str[])throws Exception
    JavaMailUserAgent jmail=new
    JavaMailUserAgent("smtp.mail.yahoo.com","[email protected]","passwordd");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    ERROR:
    E:\mail\javamail\servlet>java ServerAuthenticate
    connection opened
    Exception in thread "main" javax.mail.MessagingException: 530 authentication req
    uired - for help go to http://help.yahoo.com/help/us/mail/pop/pop-11.html
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:879)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:599)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(Compiled Code)
    at JavaMailUserAgent.sendMail(JavaMailUserAgent.java:58)
    at ServerAuthenticate.main(JavaMailUserAgent.java:131)
    How Could I rectyfy the above error ?????
    Regards,
    Mahesh.

  • ICloud storage says it's using 4.9 GB for mail, but iCloud Mail says no messages in any folder

    I'm at a loss here.
    I'm trying to clean out my iCloud Mail. All the folders it shows say no messages, but the storage stats on my devices say that Mail is using 4.9 GB.
    Where is the data being used up and how can I delete it?

    I might have found them...
    I used a mail client to set up IMAP and grab ALL the folders it found (used Outlook 2013). For whatever reason, the iCloud Mail website doesn't even show ALL the folders.
    Outlook also found 14K inbox messages that were NOT showing in the web version. ***.

  • Mail on iCloud Mail creates strange character strings

    Hi,
    once in a while iCloud Mail creates  strange character Strangs (like:
    ich gr=C3=BCnes Licht geben bzw Entscheidungen =C3=BCber durchzuf=C3=BChr=
    ende Arbeiten treffen.=0AKl=C3=A4rungsbed=C3=BCrftig ist noch, ob die vorl=
    iegende Kostensch=C3=A4tzung ausreichend ist (--> alternative Kostenvorans=...)
    Obviously when using mutatet wovels  ("german umlauts")
    Any explanation and suggestion to avoid it.
    Work on Macbook Pro OS X Yosemite 10.10.2
    Thanks for support: Lutz

    Hello,
    Indeed but native Mail app is configured automatically when setting Mail in iCloud settings. At the end, iCloud account has a specific icon in Mail app.
    Try what I described and you'll see that this iCloud account is transformed into a standard IMAP account.

  • Following = Impossible; no such option in mail preferences - iCloud Mail couldn't be enabled from the iCloud Preference Pane. Open Mail and add your iCloud account from Mail preferences.

    iCloud Mail couldn't be enabled from the iCloud Preference Pane.
    Open Mail and add your iCloud account from Mail preferences.

    What is your question?

  • Connecting Macbook Pro mail with Icloud mail

    I can't get my new macbook pro email to connect with my icloud email. I need to know the correct smtp server name and have no clue how to find it. I have already enabled icloud on the computer and click mail. It would automatically configure for some reason.

    You don't, and can't, configure iCloud mail settings manually. Check the Mail box in the iCloud preference pane.

  • Sending mail through "local" mail server?

    I've set up fetchmail and procmail to download (and delete) mail from my mail host to a ~/Maildir on a server in my home which I then access through dovecot IMAP.
    I want to be able to send mail "through" my server too, instead of going straight to my host's smtp. Maybe there isn't any good reason to do this?  I want my Sent mail to be stored on my local server. And if set up more than one mail account, it would have to use the right smtp depending on the email address.
    Anyone know how they would go about it? I found a handful of dovecot/fetchmail articles, but none that mention sending mail really. There's an oldish looking wiki article on exim, but I feel like I shouldn't need to use system wide conf for this.

    Dovecot and fetchmail only handle the mail coming to you (ie, IMAP/POP3). You need SMTP to send email.
    I highly recommend Postfix, and set it up to use your ISP's mail server as relay_host

  • Suddenly Cannot send e-mail through g-mail account

    I have had no problems with sending/receiving mail until suddenly 4 days ago - can receive, but cannot send e-mail through a g-mail account.  Do not know how to rectify, nor whom to reach out to...
    Any help would be greatly appreciated.

    Hello PBriestner,
    Thank you for using Apple Support Communities.
    The following article should be useful to you in troubleshooting email on your computer:
    OS X Mail: Troubleshooting sending and receiving email messages
    Regards,
    Jeff D. 

  • Synching between Mac Mail and iCloud Mail

    When I recieve messages to my @me.com account on my Mac, I don't recive them when I log into icloud.com website. All my sent emails from the Mac Mail DO show up in both places (Mac Mail and iCloud).
    My iOS devices don't have this problem. Any one have an explanation or what I'm misconfiguring?  I had the same problem with Lion as I am with Mountain Lion
    It is configured for IMAP
    TIA

    http://www.apple.com/support/icloud/contact

  • Outlook Client Can't Send Mail through Leopard Mail

    One of our clients is on a Windows XP machine running Outlook. She had no trouble receiving or sending before we migrated to Leopard from Tiger 10.4.10. Now she is able to receive mail but is unable to send. We have set up other test Win XP Outlook clients and they show the same problem.
    Does anyone have Outlook clients successfully sending mail via a POP account on Leopard Mail Server? If so what are the Outlook settings?

    Here is the system log during a test session with Outlook set to connect without ssl. Astrid, the Outlook user, connects via webmail (imap) first and then with Outlook (pop) and then with webmail again. Note there is no smtp connection to send mail. The Outlook error message follows the system log below.
    Nov 15 19:28:58 server1 imap[41594]: login: localhost [::1] astrid_warden plaintext user logged in
    Nov 15 19:29:08: --- last message repeated 1 time ---
    Nov 15 19:29:08 server1 pop3[41591]: login: pool-70-16-192-38.man.east.verizon.net [70.16.192.38] astrid_warden plaintext User logged in
    Nov 15 19:29:09: --- last message repeated 1 time ---
    Nov 15 19:29:09 server1 pop3[41591]: Expunged 1 messages from user.astrid_warden
    Nov 15 19:29:09 server1 pop3[41591]: login: pool-70-16-192-38.man.east.verizon.net [70.16.192.38] astrid_warden plaintext User logged in
    Nov 15 19:29:18: --- last message repeated 1 time ---
    Nov 15 19:29:18 server1 imaps[36721]: Expunged 1 messages from user.mdescoteau
    Nov 15 19:29:51 server1 bootpd[282]: DHCP DISCOVER [en0]: 0,d0:80:54:b:2d
    Nov 15 19:30:55 server1 imap[41633]: login: localhost [::1] astrid_warden plaintext user logged in
    Nov 15 19:30:56 server1 bootpd[282]: DHCP DISCOVER [en0]: 0,d0:80:54:b:2d
    Nov 15 19:30:56 server1 imap[41633]: login: localhost [::1] astrid_warden plaintext user logged in
    Nov 15 19:31:00: --- last message repeated 1 time ---
    Your message did not reach some or all of the intended recipients.
    Subject: RE: Second Test
    Sent: 11/15/2007 7:30 PM
    The following recipient(s) could not be reached:
    '[email protected]' on 11/15/2007 7:30 PM
    504 5.5.2 <astrid0dd73bb5>: Helo command rejected: need
    fully-qualified hostname
    '[email protected]' on 11/15/2007 7:30 PM
    504 5.5.2 <astrid0dd73bb5>: Helo command rejected: need
    fully-qualified hostname
    '[email protected]' on 11/15/2007 7:30 PM
    504 5.5.2 <astrid0dd73bb5>: Helo command rejected: need
    fully-qualified hostname
    What is the Helo command and why would it being rejected without registering in the system log?
    Where is Outlook looking for a fully qualified domain name.
    Message was edited by: Jim Putnam

  • Having issues sending mail through mac mail on my imac .Have 4 accounts

    I am having issues sending emails through mac mail. Have 4 accounts and they are all having same issues
    Can receive mail ok
    have tired rebuilding the mail box but no improvment.
    i need to shut down system and restart to be able to send mail.

    I tried something similar by adding a new mail account doing the apple id etc but it worked in that it would look for mail but no mail would come even though mail still goes to my phone I was loath to delete my original account just in case the new one did not work as well. So I guess I am a little stuck now.. I hope you can help me to sort it out.
    Thanks

Maybe you are looking for

  • Can I show multiple calendars at the same time, as you can  in Outlook

    I want to use the calendar for a service dept & show several calendars at the same time, vertically, for each person. Is this do-able?

  • Missing text in PDF when I use Acrobat 9.2 and FM 9

    I was able to PDF ok from FM9 using Acrobat 6, but when I upgraded to Acrobat 9.2, I'm getting some missing text in the PDF. Some non-bold text is missing. The number for Chapter 3 is missing in the TOC. Any suggestions?

  • Windows Player Version 9

    Hi does any1 know how i can watch movies in Windows Player 9 on my iMac OSX as i tried to watch a movie on it and it was encoded with drm and now the player just crashes whenever i want to watch music videos etc ! do i need to change somethin in pref

  • Performance in Parallel Processing

    Hi, My program model is as follows: I have a RFC FM(ZRFC_BACKGROUND) that will be called in BACKGROUND TASK and This FM in turn will call a child process(another RFC FM(ZRFC_CHILD)) in parallel for packages that are created in ZRFC_BACKGROUND We can

  • Making all mail larger without having to do one by one

    Just when I thought I was young enough to read email on my macbook...I am having problems with my mail program...When I read and create emails - the type is small and I want to make it larger. I can do this if I click on plain versus rich text, or if