Upload mail to gmail

I feel really dumb asking this question, but hopefully someone can help me out before my wife beats me up!
Recently she asked me to configure Mail to download her mail from googlemail. So i enabled pop forwarding from her google account, and set the pop account up in Mail. So all went fine, but the problem is all her mails no longer exist in her googlemail account; they all downloaded to the mail client. It appears this is not exactly what she wanted. She wanted to be able to access her googlemail account from Mail.
My question is, how do I reverse this mess. How can i get her mails back into gmail?
Thanks in advance

Ah... enjoy the beating!
Anyhow, you can [enable her GMAIL account as an IMAP account on the web, and then set it up as an IMAP account in Mail|http://mail.google.com/support/bin/answer.py?hl=en&answer=77695] (as a separate account to the POP account that you have already set up).
Once this is done, drag all her emails into the "All Mail" mailbox for the IMAP account. Then she will have them where she wanted them...

Similar Messages

  • Moving IMAP mail to gMail

    As far as I can see I can only import to a new gMail IMAP a/c from a POP server, but my existing a/c is already IMAP.
    Using the Web or Apple Mail is there a way to convert my main IMAP account to POP so it can be transferred to gMail and then back to IMAP.
    And is this SAFE? Also, being a long way from the exchange my line is very slow (av 50 KB/s), so is any conversion and transfer done on the respective servers, or does it all have to be uploaded?
    I'm quite out of my depth, despite much Googling the subject which indicates normal conversions being POP to IMAP.
    Cheers, Colin

    Colin,
    You can only convert your email account from IMAP to POP if your email provider offers both. Typically they only offer one. AFAK, only gmail offers both IMAP and POP.
    However, I don't understand why you'd want to do this anyway. Do i understand it correctly that you've got a new gmail IMAP account and you want to transfer your messages from your old IMAP account with another provider to gmail?
    To do that you set up both accounts in Apple Mail and simply drag all your messages from your old Imap inbox to gmail inbox.
    The main problem here is your internet connection because (as you suspected) IMAP syncs local and server mailboxes so everything you move to the gmail inbox would have to be uploaded to the gmail server. there isn't a way a round it so you'll just have to decide whether you want to do this or keep your old imap account as is. You can also create a local mailbox on your mac and move those messages there.

  • Why can't I automatically forward from Apple Mail to Gmail?

    Why can I no longer automatically forward mail from Mac Mail to Gmail account automatically. This worked fine till a few days ago but no longer. I hadn't changed any settings.  have asked about this in Gmail forum but no useful answers, I have now changed various setting but makes no difference. Most of the Gmail help is oriented to Mail 4.0, I have 3.6, so that doesn't help (can I upgrade, I have OS10.5.8), I uploaded MailUpdate but it would it wouldn't let me install).
    Maybe there is a way via Mail Forward but that seems for forwarding _from_ webmail _to_ Apple Mail.
    All help gratefully received.
    Thank you,
    Michael
    Model Name:    iMac
      Model Identifier:    PowerMac6,3
      Processor Name:    PowerPC G4  (3.3)
      Processor Speed:    1 GHz
      Number Of CPUs:    1
      L2 Cache (per CPU):    256 KB
      Memory:    1.5 GB
      Bus Speed:    167 MHz
      Boot ROM Version:    4.7.8f1

    I suppose Gmail is forwarding to Apple Mail but not v versa, hardly anything at all is landing in Gmail.
    My Apple Mail is a POP account, but IMAP -enabled in Gmail if that makes sense, Gmail help says that's what you should do to forward from POP to Gmail.
    I want to forward them to Gmail so I can read my POP mail on my PC at work, as I said this worked beautiflly since I started in Feb till last week, then stopped for no apparent reason... As alternative I use mail2web which is just about okay but very slow, no outbox, no spam or other filtering, keeps timing out.
    Yes something is doubling up but not sure what...
    In my Apple Mail I have two accounts, both POP, one my regular apple mail account, the other my Gmail account, but settings are different according to Gmail help but not sure if they  are right any more..
    thanks again

  • Cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    Not sure about yahoo, but for gmail, I done the following:
    Set up using Exchange on iPhone, it'll keep prompting for password.  On PC use captcha option, log in to gmail account from PC after completingg captcha option, enter password on iPhone.
    See how that goes for gmail, let us know.
    Hopefully someone will have fix for yahoo.

  • Java mail api - sending mails to gmail account

    Hello
    I am using java mail api to send mails.when i send mails to gmail from ids which are not in gmail friends list, most of the mails are going to spam.Ofcourse, some of them go to inbox.I tried in lot of ways to analyse the problem.But nothing could help. Can anyone plzz tell me how to avoid mails going to spam in gmail, using java mail api?
    Thank you in advance,
    Regards,
    Aradhana
    Message was edited by:
    Aradhana

    am using the below code.
    Properties props = System.getProperties();
    //          Setup mail server
              props.put("mail.smtp.host", smtpHost);
              props.put("mail.smtp.port","25");
              props.put("mail.smtp.auth", isAuth);
         Authenticator auth = new UserAuthenticator();
    //          Get session
              Session s = Session.getDefaultInstance(props,auth);
    //          Define message
              Message m = new MimeMessage(s);
    //          setting message attributes
              try {
                   m.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
                   InternetAddress f_addr=new InternetAddress(from);
                   f_addr.setPersonal(personalName);
                   m.setFrom(f_addr);               
                   m.setSubject(subject);
                   m.setSentDate(new Date());
                   m.setContent(msg,"text/plain");
                   m.saveChanges();
    //               send message
                   Transport.send(m);
    Message was edited by:
    Aradhana

  • Script task fails to send mail to GMAIL

    Hi   guys ,
       I am new here and i am glad i that i am here.  I am working in a company  as SQL Server developer(T-sql), i am learning SSIS because  i wanted to move to data warehousing.
    I not familiar and i don't know any thing about  C#,  but i am learning SSIS on my own.
    I tried to send mail to gmail  using script task , both sender and receiver with same mail ID using variables which i tried using tutorial i found from the below link.
    [quote]http://www.codeproject.com/Articles/85172/Send-Email-from-SSIS-with-option-to-indicate-Email[/quote]
    but finally when i execute the task , it returns failure message and email is not sent.
    [quote]SSIS package "Send mail using script task.dtsx" starting.
    Error: 0x8 at Script Task: The script returned a failure result.
    Task failed: Script Task
    SSIS package "Send mail using script task.dtsx" finished: Success.
    [/quote]
    Below message taken from progress tab
    [quote]Error: The script returned a failure result.[/quote]
    Can you all please help me in  finding where i am going wrong? please check below code which i have used in script task.
    Microsoft SQL Server Integration Services Script Task
    Write scripts using Microsoft Visual C# 2008.
    The ScriptMain is the entry point class of the script.
    using System;
    using System.Data;
    using Microsoft.SqlServer.Dts.Runtime;
    using System.Windows.Forms;
    using System.Text.RegularExpressions;
    using System.Net.Mail;
    namespace ST_9bc84810a62a401aa44ddd905bcd369d.csproj
    [System.AddIn.AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]
    public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    #region VSTA generated code
    enum ScriptResults
    Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success,
    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
    #endregion
    The execution engine calls this method when the task executes.
    To access the object model, use the Dts property. Connections, variables, events,
    and logging features are available as members of the Dts property as shown in the following examples.
    To reference a variable, call Dts.Variables["MyCaseSensitiveVariableName"].Value;
    To post a log entry, call Dts.Log("This is my log text", 999, null);
    To fire an event, call Dts.Events.FireInformation(99, "test", "hit the help message", "", 0, true);
    To use the connections collection use something like the following:
    ConnectionManager cm = Dts.Connections.Add("OLEDB");
    cm.ConnectionString = "Data Source=localhost;Initial Catalog=AdventureWorks;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;";
    Before returning from this method, set the value of Dts.TaskResult to indicate success or failure.
    To open Help, press F1.
    public void Main()
    string sSubject = "Test Subject";
    string sBody = "Test Message";
    int iPriority = 2;
    if (SendMail(sSubject, sBody, iPriority))
    Dts.TaskResult = (int)ScriptResults.Success;
    else
    //Fails the Task
    Dts.TaskResult = (int)ScriptResults.Failure;
    public bool SendMail(string sSubject, string sMessage, int iPriority)
    try
    string sEmailServer = Dts.Variables["sEmailServer"].Value.ToString();
    string sEmailPort = Dts.Variables["sEmailPort"].Value.ToString();
    string sEmailUser = Dts.Variables["sEmailUser"].Value.ToString();
    string sEmailPassword = Dts.Variables["sEmailPassword"].Value.ToString();
    string sEmailSendTo = Dts.Variables["sEmailSendTo"].Value.ToString();
    string sEmailSendCC = Dts.Variables["sEmailSendCC"].Value.ToString();
    string sEmailSendFrom = Dts.Variables["sEmailSendFrom"].Value.ToString();
    string sEmailSendFromName = Dts.Variables["sEmailSendFromName"].Value.ToString();
    SmtpClient smtpClient = new SmtpClient();
    MailMessage message = new MailMessage();
    MailAddress fromAddress = new MailAddress(sEmailSendFrom, sEmailSendFromName);
    //You can have multiple emails separated by ;
    string[] sEmailTo = Regex.Split(sEmailSendTo, ";");
    string[] sEmailCC = Regex.Split(sEmailSendCC, ";");
    int sEmailServerSMTP = int.Parse(sEmailPort);
    smtpClient.Host = sEmailServer;
    smtpClient.Port = sEmailServerSMTP;
    System.Net.NetworkCredential myCredentials =
    new System.Net.NetworkCredential(sEmailUser, sEmailPassword);
    smtpClient.Credentials = myCredentials;
    message.From = fromAddress;
    if (sEmailTo != null)
    for (int i = 0; i < sEmailTo.Length; ++i)
    if (sEmailTo[i] != null && sEmailTo[i] != "")
    message.To.Add(sEmailTo[i]);
    if (sEmailCC != null)
    for (int i = 0; i < sEmailCC.Length; ++i)
    if (sEmailCC[i] != null && sEmailCC[i] != "")
    message.To.Add(sEmailCC[i]);
    switch (iPriority)
    case 1:
    message.Priority = MailPriority.High;
    break;
    case 3:
    message.Priority = MailPriority.Low;
    break;
    default:
    message.Priority = MailPriority.Normal;
    break;
    //You can enable this for Attachments.
    //SingleFile is a string variable for the file path.
    //foreach (string SingleFile in myFiles)
    // Attachment myAttachment = new Attachment(SingleFile);
    // message.Attachments.Add(myAttachment);
    message.Subject = sSubject;
    message.IsBodyHtml = true;
    message.Body = sMessage;
    smtpClient.Send(message);
    return true;
    catch (Exception ex)
    return false;
    Please help me resolve this guys ... THANKS IN ADVANCE

    Thank you very much for your reply @Elvis Long,
    Sorry for the late reply
    Actually, i am not trying or executing this task  from my office , but i am trying this at my home :( .
    sEmailPort has value 587 sEmailServer has smtp.gmail.com
    Can you please check whether this C# coding is correct or not ? because finally it gives error saying "Script
    Task: The script returned a failure result" 
    so can you please check this with your system and let me know what is wrong with this code
    Thanks in advance  

  • Apple Mail and Gmail IMAP

    With the iPhone coming to Verizon soon, I'd like to move back to Apple Mail from Gmail, but still want to keep Gmail as my source because my domain is setup with Google Apps but mostly because of the unparalleled spam filtering Gmail has. My problem is that even though I've configured Apple Mail exactly as Google recommends (shown below), I still have some issues.
    From the Mail menu, click Preferences > *Accounts > Mailbox Behaviors*
    Drafts:
    Store draft messages on the server > *do NOT check*
    Sent:
    Store sent messages on the server > *do NOT check*
    Junk:
    Store junk messages on the server > checked
    Delete junk messages when > Never
    Trash:
    Move deleted messages to the Trash mailbox > *do NOT check*
    Store deleted messages on the server > *do NOT check*
    I want to have true IMAP functionality here, but I'm not getting it. Sent messages work fine...if I send a message, it shows up in Apple Mail in the Sent folder and when I go to Gmail it is also in the Sent folder. BUT...when I delete a message in Apple Mail it goes to the Gmail *All Mail* folder (in Apple Mail and Gmail) and never shows up in the Gmail Trash on either Apple Mail or Gmail...where it should. I've tried changing the settings under *Apple Mail > Trash* but that doesn't fix the problem.
    I realize some of you might be inclined to say "It's Google problem...ask there" but I'm hoping a Gmail user here might have had this same issue before. Even as a dedicated Apple person for many years, I still can't give up Gmail and their spam filtering that Apple Mail can't come close to. Thanks for any suggestions.

    Thanks, Andy. I should have posted a closure statement on this thread as I finally figured everything out. The most frustrating thing is Google's own advice at http://mail.google.com/support/bin/answer.py?answer=78892# couldn't further from correct. After many hours of experimenting with settings, I finally came up with the correct ones. In fact, I'm in the process of writing an article about it since there is simply no definitive guidance on the web that I've been able to find in the time I've searched.
    Your comments are on target...everything on the *Behaviors Tab* needs to be checked (excepts Notes) and the *Delete when* settings must be set to Never. But there are a few other things that must be done, including some changes on Gmail Settings before Mail and Gmail will be perfectly synchronous. I'll post the entire solution on this forum when I finish the graphics.

  • How can I move mail from Gmail to another account?

    Mail.app in Mavericks is incompatible with Gmail. I use Gmail. I have about 2GB of mail, most of it in a few dozen archive folders, stored on Gmail, and (I think) duplicated locally on my Mac Mini.
    I think my best recourse is to switch to an email service provider that conforms to the IMAP standard (which Gmail does not). Assuming I find one, I will have both accounts, Gmail and the new one, in Mail.app. How can I move the mail from Gmail to the other account?
    In Mail.app in Mavericks, All Mail must be marked to show as a folder, and when I move a message from a folder in Gmail it will still be in the All Mail folder.
    When all folders are empty, including the Inbox, can I be sure that every message has been moved to the new account, even though every message is still in the All Mail folder?

    Mail.app in Mavericks is incompatible with Gmail. I use Gmail. I have about 2GB of mail, most of it in a few dozen archive folders, stored on Gmail, and (I think) duplicated locally on my Mac Mini.
    --> mine's working fine. I know there are issues, but it should work
    I think my best recourse is to switch to an email service provider that conforms to the IMAP standard (which Gmail does not).
    --> yes, it would be nice if they adhered to standards.  That said, mine works great.  So far.
    Assuming I find one, I will have both accounts, Gmail and the new one, in Mail.app. How can I move the mail from Gmail to the other account?
    --> If all you want to do is keep your history, make a local folder on your mac and drag all the mail messages there (both se4nt and incoming).  I am not sure what will happen if you later drag those into the new Xmail account
    When all folders are empty, including the Inbox, can I be sure that every message has been moved to the new account, even though every message is still in the All Mail folder?
    --> Dont look in "all mail". Open your inbox and look at each individual inbox.
    Good luck,. But first, try to fix your account.
    Grant

  • When deleting an e-mail on Gmail, the display reverts to the Gmail log-in window

    When deleting an e-mail on Gmail, the display reverts to the Gmail log-in window. Internet Explorer does not have this problem. Firefox did not have this problem until a few weeks ago.
    Firefox version 1.9.2 3855

    Ernie,
    The OP appears to be concerned about sent messages in particular, which, as you know, wouldn’t be on the server no matter what the settings and would certainly be lost as a result of deleting the account.
    <hr>
    thesameage,
    Deleting a POP account only deletes the messages stored in the account’s mailboxes. If you move those messages to custom “On My Mac” mailboxes or to the mailboxes of another account, you won’t lose them. It’s not that Mail goes after your mail trying to delete as much as it can. It’s just that if a mail account is deleted, then its mailboxes cannot exist anymore...
    Here’s the title of some Mail Help articles that explain how to create “On My Mac” mailboxes and organize your mail there however you wish:
    Creating a mailbox
    Organizing your email
    Alternatively, a quick and simple procedure to create a duplicate of the account’s mailbox structure as “On My Mac” mailboxes would be importing them doing File > Import Mailboxes, choosing Mail for Mac OS X as the data format, and selecting the ~/Library/Mail/POP-username@mailserver account folder.
    That said, instead of deleting the account right away, you can just disable it (i.e. turn OFF Preferences > Accounts > Advanced > Enable this account), leave it that way for some time, and delete it only after making sure you didn’t miss anything while the account was disabled.
    BTW, if you back up your data, and the ~/Library/Mail folder in particular, you won’t have to worry about accidentally losing anything as a result of doing something like that...
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • How do I keep duplicate messages in Mail and Gmail?

    For the past few years messages would appear in both my Mail and Gmail inboxes.  If I deleted a message in Gmail, the duplicate would REMAIN in Mail. Therefore, I could keep some messages in my gmail account that pertained to work and delete their duplicates in Mail (since I wouldn't need them at home). Likewise, I could keep some messages organized in my Mail folders and delete their counterparts in the Gmail account.
    At some point I must've downloaded an update or something because the accounts are now totally synced.  If I delete a message in my Gmail inbox (or even move it to a Gmail folder), it vanishes from my Mail inbox.
    I know this is how most people like these programs to work together, but is there a way to revert it back to the way it was?  I tried toggling off POP, then testing it (didn't work).  Then I toggled off IMAP (still didn't work).  Then I toggled both of them off (still didn't work).  My Mail account is listed as IMAP for what it's worth.

    Try posting this in the 10.7 Mail forum. You'll get more help there.
    DALE

  • RSS feeds between Apple Mail and Gmail

    I was wondering if this is possible or if this even exists.
    I am subscribed to RSS feeds in Apple Mail which I love reading on my iMac. But when I'm at the office on a Windows machine I can only read my RSS feeds through Gmail. It's hard to keep track of what I haven't read and have read.
    Is there a way to sync which RSS reeds which are read/unread with Apple Mail and Gmail?

    Thanks, Andy. I should have posted a closure statement on this thread as I finally figured everything out. The most frustrating thing is Google's own advice at http://mail.google.com/support/bin/answer.py?answer=78892# couldn't further from correct. After many hours of experimenting with settings, I finally came up with the correct ones. In fact, I'm in the process of writing an article about it since there is simply no definitive guidance on the web that I've been able to find in the time I've searched.
    Your comments are on target...everything on the *Behaviors Tab* needs to be checked (excepts Notes) and the *Delete when* settings must be set to Never. But there are a few other things that must be done, including some changes on Gmail Settings before Mail and Gmail will be perfectly synchronous. I'll post the entire solution on this forum when I finish the graphics.

  • Sending photo attachments from Mail to Gmail

    I've been sending photo attachments via Mail for years and haven't had trouble until recently. Now I'm getting complaints from Gmail users that the attachments come through as embedded files. I guess on the Gmail end, they don't see it listed out as an attachment, but as part of the mail body. What's going on here?
    I attach files same as I always have - by clicking on "attach", then selecting the file(s) I want to attach. I always leave "send windows friendly attachments" selected (although in an experiment, I tried sending it without clicking that, and the images came over all stretched out and shrunken in a very strange way).
    I can't think of what would be happening, but I'm assuming it's something in either the way Mail or Gmail is treating the photos - and I'd like to have them come through as attachments, rather than embed files (I'm a photographer and have heard from some of my clients that the embed is a pain - they have to "save as" right click on each image rather than just select "save attachments" or something).
    Any ideas??

    Send to these recipients using only Plain Text, and all should be well. To test choose a message you previously sent from the Sent mailbox, open, click on Message in the menubar, choose Send Again, then click on Format and choose Make Plain Text.
    Rich Text as received by those using Outlook or Outlook Express, as two examples, will see the RTF as HTML, and the attachments will appear embedded -- although they are not.
    Ernie

  • How to enable push mail for gmail in iphone 6 plus

    how to enable push mail for gmail in iphone 6 plus

    Tommacgr wrote:
    You can setup gmail account in iphone as exchange so the trick is simple and easy and push notification work after instantly . Just follow this steps http://email.about.com/od/iphonemailtips/ss/Set_Up_Push_Gmail_in_iPhone_Mail_Ste p_by_Step_Screenshots.htm
    You can only set up a Gmail account as an Exchange account if you have a paid account. Google dropped Exchange support for free accounts two years ago. That link is just a bit outdated.

  • Duplicate emails in Mail with gmail

    Hi, I keep getting multiple duplicate emails in my inbox. Even the one's I've deleted keep coming back. They appear across my folders and it's really frustrating as I'm unable to stop it. I've checked the discussions but cannot see an obvious solution (unless I'm looking in the wrong place) other than to disable my POP account in gmail settings, which I've done. Can anyone offer any help please?

    Information on trying to get Mail and Gmail to work together.
    Gmail with Apple Mail
    Gmail with Apple Mail (2)
    Gmail with Apple Mail (3)
    Gmail with Apple Mail (4)
    Gmail with Apple Mail (5)
    Gmail without duplicates

  • Firefox spell-check dictionary switches to incorrect language when starting compose mail in Gmail

    I have Firefox 11.0 with dictionaries for Lithuanian and Russian languages installed. It seems that no matter what dictionary language is selected, after I start composing mail in Gmail, it switches the dictionary language to Russian (it changes the spellchecker.dictionary property).
    Steps to recreate:
    1. Say, the dictionary language is set to Lithuanian in some way (the spellchecker.dictionary property is "lt")
    2. Restart Firefox
    3. Open Gmail page (spellchecker.dictionary is still "lt")
    4. Start composing new mail - this is when the spellchecker.dictionary property gets changed to "ru"
    (there are other, more complicated scenarios, when this happens, sometimes it is even enough to reload the Gmail tab)
    Firefox general.useragent.locale property is "lt-LT", Gmail display language is "English-US". I don't know what other settings I should check. Of course, I could uninstall Russian altogether, but I do need it sometimes, so it would be nice to have, but not as a default language every time I open my mail.
    I have found a similar bug https://bugzilla.mozilla.org/show_bug.cgi?id=717433 , maybe this is related.

    There is no built-in way to use more than one dictionary at a time. The [https://addons.mozilla.org/en-US/firefox/addon/3414/ Dictionary Switcher] extension may be of use to you.

Maybe you are looking for

  • How to Download vendor from R/3 to CRM?

    Hi All How the vendor master data should be downloaded from R/3-4.7 to CRM5.0? Carrier / Forwarding agents are maintained in R/3 as vendors, but they don't have purchasing organization. Is there any adapter object like dnl_cust_ktokd? Is there any cu

  • Does anyone have a PA271W, 2010 Mac Pro, and 5870 working via DisplayPort?

    Hi All, There are numerous threads about multi-monitor and resume-from-sleep issues with Mac Pro 2010 (5,1) and ATI 5870. There is also one thread in this forum with another user having problems with DisplayPort (henceforth, "DP") on his PA271W, but

  • Tree view control font size

    Hello, (LabVIEW 8.0): I have found that the font size of the tree view items can be set at design time from the drop down list on the menu bar.  However, is it possible to make each "level" (i.e. parent = a level, child = different level, grandchild 

  • Form based authentication - users stored in db.

    I must use form based authentication and the users are stored in an oracle table. How can I configure OC4J to get this thing working ? I have search some days on the internet and came up with nothing ... Oracle seems to be offering so much security o

  • Photoshop cs6 stopped to save files suddenly, why??

    hello i use windows 7 ultimat with 2gb memory and around 300 graphic ram i was using cs from a month and it was working fine. but recently it stopped saving file. whether by commands or going menu option. the save option is available but when click i