How to use different mail address  in icloud mail

Hi,
I'm facing a dilemma : switch from Gmail to iCloud
I would like to gather my cloud account and i'm quite satisfied of apple icloud, but there still is a last barrier to me :
multi-mail accounts !
I didn't find any solution in order to be able to send mails from iCloud with an alias as @gmail.com, @live.com or any other mails.
I totally can forward all my mails to my icloud address (im already doing it with Gmail) but i NEED to be able to answer my mails with the correct alias (for work as much as for private life) just as i currently do with google mail service linking my alias smtp's.
This is the last thing that makes the swap from Google to iCloud impossible for me, but maybe there is a solution ....
Thanks,

You cannot send emails via iCloud from non-iCloud email addresses. There is no solution to that using the iCloud service.
There are some convoluted workarounds that involve setting up multiple email accounts with different outgoing mail servers, but they do not allow you to send non-iCloud Mail via iCloud.

Similar Messages

  • How to use same email address on iCloud across different devices?

    I am setting up my iCloud ID, which I already have on my MacBook Air and iPhone on my new iPad mini. When I turn on iCloud, it asks me to set up a new email address at @icloud.com, which I don't want it to do. Instead, I want to use the @me.com email address I already have.
    How do I turn on Mail on my iPad mini and get it to pick up the email address I already have?

    Hey pdenlinger,
    It sounds like you are signed into a different iCloud account on the iPad mini, in my experience that would be the only cause. Be sure to double check what Apple ID you are signed into for iCloud, we'll want it to be your @me.com address.
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/HT4436
    When you setup your iOS device, by default the same Apple ID is used for iCloud services and store purchases (iTunes, App Store, iBookstore). However, if you want to use a separate Apple ID, you can set up the account you would like to use in Store Settings.
    For more information on @me.com and @icloud.com, refer to this article:
    iCloud: About your icloud.com, me.com, and mac.com email addresses
    http://support.apple.com/kb/HT2623
    Thanks,
    Matt M.

  • How to use different mail address in "from" and "user" property?

    I'd like to use the user enter mail address as the "from" property and use my mail account to send it, but I got error: com.sun.mail.smtp.SMTPSendFailedException: 553 You are not authorized to send mail, authentication is required when set different mail address in "from" and "user" property, how to resolve this problem?

    Basically that's a bad idea. Suppose you used your server to send messages that claimed to come from "[email protected]"? Naturally enough people have tried that, either as a joke or as an attempt at fraud, so that servers will check to see if the message is coming from the server it claims to be coming from. And if it isn't -- as in that example -- it will consider it a forgery. Best case (for you) is that the server will flag it as spam or junk. Worst case is that your server will be blacklisted and other servers will ignore it.

  • How to separate joint Apple ID's account using different mails and passwords

    How to separate joint Apple ID's account using different mails and passwords

    Hello ROOOS,
    When you speak of a joint Apple ID account it seems you mean a shared Apple ID.
    Frequently asked questions about Apple ID - Apple Support
    Can I share my Apple ID with someone else?
    You shouldn't share your Apple ID account information with other people. Each person should have their own Apple ID.
    To eliminate the share one will keep it and the others will create their own Apple IDs.
    Apple - My Apple ID
    Best regards,
    Nubz

  • Can't send email using different IP address subnet

    Hi, in our office using different IP address subnet, like this : 
    10.254.1.xxx and 10.254.3.xxx
    And Our Server Exchange version is 2007, using IP address 10.254.1.xxx, but when from another IP like 10.254.3.xxx can't send or receive email, and get error (on some pc that using SeaMonkey) :
    An error occured sending mail : The mail server sent an incorrect greeting: 4.3.2 Service not available, closing transmission channel.
    Someonce can help me, please..
    Thanks before.

    Hi Jim, 
    We have check the following path on our Exchange Server :
    C:\Program
    Files\Microsoft\Exchange Server\Logging\TraceLogs 
    And
    we not found any log files here.
    Thanks.
    Best Regards,
    Antoni

  • How to use different page scapes in smartforms

    hi
    How to use different page scapes in smartforms.
    I want Potrait format in the 1st page and Lanscape format in 2nd page is it possible if so plz suggest me an idea

    Hi,
    It is possible in smart forms, but not in scripts.
    we can have 3 tabbed options for pages in smart forms.
    <b>General...
    Output options
    Conditions</b>.
    In <b>output options</b> u can define whether a page can portrait or land scape in <b>print attributes</b>.
    Reward if helpful.
    Regards,
    Sandhya

  • How to use's mail's "perform mail action with message"

    I can't for the life of me figure out how to use "perform mail action with message", I basically want to create a script that get's used on a rule from Mail, but nothing I try will work.
    This is what I started with...
    tell application "Mail"
    perform mail action with message msgs for rule theRule
    end
    end
    This doesn't compile i've seen an example of it being used like this...
    using terms from application "Mail"
    perform mail action with message msgs for rule theRule
    end perform
    end using
    this also doesn't compile, so I'm not sure what it's wanting

    This is one of those annoying things about programming - you have to arrange and spell things exactly right (this gets worse if you have fat fingers). You can look at the dictionary for Mail to see the specifics - in your example you are missing an "s" at the end of the word "message":
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">tell application "Mail"
    perform mail action with messages msgs for rule theRule
    end tell
    </pre>

  • How to use java mail to send email to hotmail box

    how to use java mail to send email to hotmail box??
    i can send emails to other box(my company's email account) but for hotmail, the program didnt print any err or exception the recepient cant receive the mail.
    thanks

    you ust to download activation.jar and mail.jar and add them to your build path.
    i have used the googlemail smtp server to send mail the code is following:
    public void SendMail()
    Properties props = new Properties();
    props.put("mail.smtp.user", username);
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.port", port);
    props.put("mail.smtp.starttls.enable","true");
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.socketFactory.port", port);
    try{
         Authenticator auth = new SMTPAuthenticator(username,password);
    Session session = Session.getInstance(props, auth);
    MimeMessage msg = new MimeMessage(session);
    msg.setText(text);
    msg.setSubject(subject);
    msg.setFrom(new InternetAddress(senderEmail));
    msg.addRecipient(Message.RecipientType.TO, new InternetAddress(receiver));
    Transport.send(msg);
    }catch(Exception ex) {
         System.out.println("Error Sending:");
    System.out.println(ex.getMessage().toString());
    and this the SMTPAuthenticator Class which you will need too.
    class SMTPAuthenticator extends javax.mail.Authenticator {
         private String fUser;
         private String fPassword;
         public SMTPAuthenticator(String user, String password) {
         fUser = user;
         fPassword = password;
         public PasswordAuthentication getPasswordAuthentication() {
         return new PasswordAuthentication(fUser, fPassword);
         }

  • How do you change email address on icloud ?

    How do you change emial address on icloud on my iphone ?

    Delete the account thats on there and then sign in with your new address.

  • How to use Nokia mail for exchange

    How to use Nokia mail for exchange for N82 so that it can push mails for gmail,yahoo.

    It appears that what you are looking to do is from another product at Nokia called Nokia Messaging.  Go to mail.nokia.com and setup a messaging account and add the gmail and yahoo accounts there.  Then SMS send the configuration program to your device.  Install it.  it will add all the accounts to your device on install and will send messages to your device.  So at this point you will have Mail for Exchange for you corporate mail and Nokia Messaging for you personal mail ( gmail and yahoo).

  • How to use differing 'My Info' on iPhone/iPad

    Hi everyone,
    I am using an iPhone and my wife an iPad. Both devices are set up using the same Apple ID in order to easily share App Store purchases and for iCloud as well. In Settings.app under Mail, Contacts, Calendars you can tell the device who you are by selecting your contact info under My Info. So I did select mine on the iPhone and my wife’s contact on the iPad. So far so good. But sometimes, and I haven’t quite found out how and why, this Info automatically changes!
    It is always the last edited setting which propagates to the other device. So for example, if I set my info on the iPhone and afterwards my wife’s on the iPad I well end up with her info on my iPhone as well. It happens the other way around, too. I haven’t yet figured out how this happens. So it could be over the air or while syncing via USB which I sometimes do for faster device backups. It could also happen when using a specific app or service.
    Maybe someone can shed some light on this? I’m sure that I could just use separate Apple IDs on both devices, but I’d rather not. Everything works and is easier to handle. Even FaceTime and iMessage support different Caller IDs when using the same Apple ID. So it’s only this little thing that’s left…
    Thanks and hoping for a solution
    Björn

    Easy, no need to be harsh. I might not be a Level 9  Discussions user, but I’ve been an Apple Technician for more than a decade now. So believe me, I know what I’m talking about. Be it OS X Server or emptying the Trash. But even I come here from time to time to learn from others. Well, back to topic and being a little more specific:
    The 'My Info' setting always belongs to the first iCloud account you add to an iOS device. In this account you create at least 1 contact, the one you will be using for 'My Info'. You then do the same on your other iOS device using NOT the same iCloud account, of course. You only need to enable contacts syncing in iCloud preferences for these primary accounts. From here on you can use differing 'My Info' on your 2 iOS devices without a problem.
    But you may know that you can use more than one iCloud account at a time. Only the primary one will offer all iCloud options like Photostream. But what they all offer is contacts, calendars, etc. So if you intend (and I did) to share these 2 between your devices you can add them using a second iCloud account to both of your iOS devices. This makes it 3 accounts all in all. You could even go further and add another one just for 'Find my iPhone' if you like.
    I would’ve used the built-in sharing of Calendar.app instead, but Contacts.app does not (yet) offer sharing contacts with others. That’s why I went with the third iCloud account as a secondary account to both iOS devices.
    Apple of course recommends using just one Apple ID for everything to make it easier. But in some scenarios this just won’t cut it, which is even described in one of their support documents.
    I hope that now you have an idea what I’ve done…
    Good night
    Björn
    PS: It would be nice if people did not insist on being right. They too can sometimes learn something!

  • Is there ANY way to use another email address with iCloud?

    Apple let you use any email address as an Apple ID, but I really want to be able to use a non-Apple email address with my iCloud mail. Just about every email service (Gmail, Hotmail, etc) allows you to send from a third-party address (once you've done a security verification) so that you don't have to change your email address when switching services. iCloud seems to have no such option. Is there any way round this, or any way to put pressure on Apple to add this basic feature???

    rdepom wrote:
    Is there any way round this
    I'm afraid not
    or any way to put pressure on Apple to add this basic feature???
    http://www.apple.com/feedback/icloud.html - but I don't think it's very likely they'll change it.

  • How to use different Vlans outside another gateway in sg-300 28?

    dear all
    how shall i use different vlans outside another gateway in sg-300 28?
    Example:
    vlan2 192.168.2.0/24 gateway 192.168.2.1 outside router gateway 192.168.2.254
    vlan3 192.168.3.0/24 gateway 192.168.3.1 outside router gateway 192.168.3.254
    should me doing in sg-300 28?
    thanks.

    Hi Amin,
    Leave the switch in Layer 2 mode 
    Cable  VLAN2  to the to the outside router gateway 192.168.2.254 interface
    cable  VLAN3  to the to the outside router gateway 192.168.3.254 interface
    Excuse the rough diagram
    Make the port going to the outside router gateway,  untagged in the vlans they will be transporting. (I am assuming that the router gateway is not vlan aware.)
    IP hosts will most likely get DHCP from the router gateway.  The IP hosts will then automatically send IP traffic to the router gateway.
    VLAN 1 in my switch,  could  then be the only interface within the switch  that has a IP address associated  with it,  for management purposes.
    I can see from you post,  that English is not your first language,  if you want to speak to someone,  you can ask a question by going to;
    www.cisco.com/go/sbsc
    regards Dave

  • How to use Windows Mail with Firefox

    I want to use Windows Mail as my default e-mail program when using Firefox to browse the internet and initiate e-mail messages. How can I get Firefox to use Windows Mail? Right now, it is using Thunderbird, which I do not even have installed on my PC, and it is using the web e-mail Address Book and Sent folder on my ISP's web site, rather than being able to reference the Address Book and Sent folder on my PC.
    Thank you!

    See this: <br />
    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • I would like someone to tell me how to use the dstp address parameter(url) in the datasocket connections.What to write in there, destination/source url.

    What do i do if i right to a datasocket..Do i have to make a special file on my server, How do i create a datasocket server.?? Do i use the same "address" to read a datasocket?

    The URL is the address of the DataSocket server. The server program is a stand-alone program that handles connections and broadcasts data. You create a server by running the program that comes with LabVIEW. You publish to (write) and subscribe from (read) the server and both would use the same address. Normally the data is not file based but DataSocket does support file reads by specifying file or ftp instead of dstp in the URL. The server can be running on the same computer as a publisher/subscriber or on a different computer. NI is now offering a class called LabVIEW Networked Measurements that covers DataSocket. I strongly recomend it.

Maybe you are looking for