I want to redirect mails having attachments to other account automatically by creating rules or using automator. Is that possible?

I have a problem opening mails that have attachment in it because the corporate policy does't allow downloading attachments. I want to redirect those mails to my corporate account so that I can download attachments using corporate mail client.
Is that possible?

Just add a rule and select "Attachment type" then in the drop down menu select what kind.
If you want all of those attachment types to be sent to the other account or what not. Then you're going have to click on the + on the far right until you've filled them all... I did a few of them for an example.
KOT

Similar Messages

  • I want to buy iPhones (4S and 5) and want to buy them in US $. But want Apple to ship them to Pakistan. I will pay the charges of shipment once told. I want to buy the iPhones in Contracts. I'll unlock them myself no problem. Is that possible? Apple ans?

    I want to buy iPhones (4S and 5) and want to buy them in US $. But want Apple to ship them to Pakistan. I will pay the charges of shipment once told. I want to buy the iPhones in Contracts. I'll unlock them myself no problem. Is that possible? Apple ans?

    No, you can't do what you want. Apple will only ship a US iPhone to a verified billing/shipping address in the US.

  • I only want to apply iMatch/iCloud to one of my iTunes playlists, not my entire library. Is that possible?

    I only want to apply iMatch/iCloud to one of my iTunes playlists, not my entire library. Is that possible?

    Hello efisch81,
    As far as I know, this is not currently possible. It matches the entire library or none of it. For specific playlist syncing, you'll still need to sync traditionally through iTunes for now.

  • Double mails in MobileMe and other account (IMAP)

    I am trying to optimize my mail workflow and I could use some help.
    What is the situation? In the Mail app I have two IMAP accounts set up: MobileMe and a business account.
    I have a mailaccount from my Internet-provider (Online.nl). All mail to that account is forwarded to my MobileMe account (IMAP). This works fine, except that MobileMe shows all mails double.
    I also have a business account that is also IMAP. All incoming mails on this account are also shown double.
    So the question, simply put, is: why do both my IMAP accounts show all incoming mails double ???
    Any help is appreciated. Thanks in advance.
    Willem
    Netherlands

    Hi
    Had the same problem, stumbled around, then finally found the solution.
    Switch off POP on your email. Delete the POP email account on your iphone. Try to set up a new email account on your iPhone. You then get a warning that POP is disabled but it then gives you full configuration options for the new email account - including IMAP! Switch to IMAP, complete the other settings and it all works.
    ps. To switch off POP on virgin email you need to log in using your web browser, then go to Settings, then Forwarding And POP/IMAP.

  • How do i add purchased apps, songs and Tv from one i tunes account on a laptop to my i phone, WITHOUT having to delete all of my items downloaded from my other account on my home PC?  If it is not possible, anybody know how i'd go about getting a refund?

    When i link the phone to the laptaop, it shows all of the stuff stored on it, but will not let me add any more downloads without first deleting eveything off it - which defeats the purpose.  Any ideas as to how i can add these new downloads to my phone without wiping everything else??  Any help would be greatly appreciated!!!

    Thats great Allan - only recently purchased an external drive so will try to transfer via that, or borrow a cable and try and link them up.
    Its weird as it would let me use the shared files function to shift the new aps onto the phone, but not the audio or video files.  Will give the suggested solutions ago and hopefully that'll do the trick.
    Really appreciate your assistance - 
    warm regards
    Lee

  • Converting mail with attachments to PDF

    I was used to archive mail in Outlook to PDF (using Adobe Acrobat).
    Now I want to convert mail with attachments from Apple mail to PDF, but the attachments are only converted as icons and not readable anymore. Is there a plugin or anything else to solve my problem?

    What are you expecting? An attachment cannot be converted to a PDF file unless you open it in an application that is capable of saving it in PDF format. And any attachments you convert to PDF would be separate from the actual email itself, which would be a different PDF file.

  • Option if I want an e mail address added to the recipents list.

    Hi
    I do not want to stop the auto fill in mail I just want an option if I want an e mail address added to the recipents list.
    Thanks
    Michael

    Hi,
    Thanks for answering but thats not what I need
    Let me explain more fully.
    Every time I send an e mail the address gets added to the recent recipents list automaticaly.
    Thats what I want to stop happening.
    I want a recent recipents list of just the addresses I choose that I actually need Yes I know that I can edit the list but I have to keep doing it and thats just pain.
    So when I send an e mail to a new addres is there an app to give the option message :-
    "Hi would you like me to add this new address to your list of addresses?"  Yes    No
    Can that be done?
    Thanks
    Michael

  • Send mail with attachments

    I downloaded a code from-
    http://www.stardeveloper.com/articles/display.html?article=2001101101&page=1
    it has four files: three files are ok. but there is one bean file.
    MailerBean.class
    package com.stardeveloper.bean.test;
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public final class MailerBean extends Object implements Serializable {
         /* Bean Properties */
         private String to = null;
         private String from = null;
         private String subject = null;
         private String message = null;
         public static Properties props = null;
         public static Session session = null;
         static {
              /*     Setting Properties for STMP host */
              props = System.getProperties();
              props.put("mail.smtp.host", "mail.yourisp.com");
              session = Session.getDefaultInstance(props, null);
         /* Setter Methods */
         public void setTo(String to) {
              this.to = to;
         public void setFrom(String from) {
              this.from = from;
         public void setSubject(String subject) {
              this.subject = subject;
         public void setMessage(String message) {
              this.message = message;
         /* Sends Email */
         public void sendMail() throws Exception {
              if(!this.everythingIsSet())
                   throw new Exception("Could not send email.");
              try {
                   MimeMessage message = new MimeMessage(session);
                   message.setRecipient(Message.RecipientType.TO,
                        new InternetAddress(this.to));
                   message.setFrom(new InternetAddress(this.from));
                   message.setSubject(this.subject);
                   message.setText(this.message);
                   Transport.send(message);
              } catch (MessagingException e) {
                   throw new Exception(e.getMessage());
         /* Checks whether all properties have been set or not */
         private boolean everythingIsSet() {
              if((this.to == null) || (this.from == null) ||
                 (this.subject == null) || (this.message == null))
                   return false;
              if((this.to.indexOf("@") == -1) ||
                   (this.to.indexOf(".") == -1))
                   return false;
              if((this.from.indexOf("@") == -1) ||
                   (this.from.indexOf(".") == -1))
                   return false;
              return true;
    }1. Do i have to give some protocol names.
    2. If so how do i find them.
    3. I want to send mail from our intranet.(company).
    4. I am using NetBeans 5.0. it is asked to save the bean file in a folder in web-inf\classes. but i dont have classses in that folder. Also i dont have libraries folder. Do I have to change any settings?
    5. How can i create class for this bean file. If i save it in web-inf, it says u can not save it there and saves it in source packages. What shall i do.

    (You found all the free sample source code that's included with JavaMail, right?)
    You probably don't need to specify any protocol names, the defaults should work.
    You will have to set the properties appropriately for your environment, however.
    You'll want to handle this class just like any other Java source file in your
    web application. Usually such files are compiled and the resulting class
    file ends up in WEB-INF/classes.

  • I want to use 2 ipad 2 devices to present in a one-on-one situation.  I would hand an ipad 2 to my customer and go through a presentation controlling what he/she sees with my ipad 2.  Is that possible?

    I want to use 2 ipads 2 devices as presentation tools in a one-on-one siuation.  I want to cotrol what my customer sees on his/her ipad2 (that I would hand to  him/her) through the ipad 2 that I would be using.  Is that possible?

    This IS possible. Take a look at Fuze Meeting HD and Mobile Presenter Pro on the App Store. Fuze Meeting HD was featured in an iPad commercial, in fact.
    http://itunes.apple.com/us/app/mobile-presenter-pro-wireless/id363283163?mt=8
    http://itunes.apple.com/us/app/fuze-meeting-hd/id389446884?mt=8

  • Do not want to display mail attachments in the email body

    When I want to add word processing attachments, usually with .doc extension, the whole of the text is displayed in the body of the email.  I do not want this, I just want to show the name of the file such as MyLetter.doc or AnotherRamble.doc etc. 
    I use the doc extension because those on one of the other operating systems may not be able to read .pages extensions. 
    I may from time to time send files with the .xls extensions and more recently I have just sent 20 x A4 pages of scanned documents which have .jpg extensions, every one of these .jpg attachments is displayed in full in the body of the email, it makes them difficult to read and hard to print.  The original plan was to send 20 x .jpg, the recipient would print them out.  There is some complex data in these documents and honestly hard copies are essential at the other end.

    Control click or Right Click on the attachment in the body of the email and select 'View as icon'.
    There is a (paid for) mail plugin called Attachment Tamer which helps Mail do a much better of handling attachments - giving much more control over how they are viewed/arranged/received. It's available from http://lokiware.info/Attachment-Tamer
    (Usual caveat, I've no connection with Lokiware, just happy with their product).

  • Want to redirect my e-mail from aol to mail in safari.

    Hi everyone! please can anyone help me, I want to redirect my e-mail from aol to mail in safari. How do I do it please? I don't have broadband yet, I'm looking into that with aol, they say in their info we cant have it for OSX but I know some of you have it and it's fine.

    I can't get onto aol using safari, is this
    because im on dial up only?
    No, it is because AOL is in transition to a free service & the web mail portal (the web page that directs you to the sign-in screen) is currently poorly configured. Try instead going to https://my.screenname.aol.com/ & entering your AOL screen name & password there. Once that is accepted, you will be able to get to your web mail by clicking on the "Mail" text at the top of the welcome page.
    Or, as others suggest, you can use Apple's Mail application to avoid all this.

  • Mail: Saving Attachments

    I upgraded the OS on my iMac from Snow Leopard to Mavericks 10.9.3 (13D65) on Sunday, and now I'm having a problem with mail.app. I'm running Mail Version 7.3 (1878.2), and I'm unable to save any attachments or images in emails.
    From browsing in this forum, I note that there's been some changes to Mail between the Snow Leopard and Mavericks versions of the OS, and now there are options for "Save Attachments" and "Quick Look Attachments" in the File menu.  However, for some reason within my copy of Mail, these are greyed out:
    I also note that there are "hidden icons" that appear when you mouse over the header/detail information within each email message, and that these contain an attachments symbol (usually a paperclip). However, again in my copy of Mail, the attachments symbol doesn't exist:
    Additionally, when I click on an image or attachment within an email message, the only option I get is "copy image" or "copy attachment" -- when I select this, nothing happens. (I used to get a very helpful menu with all sorts of options... This appears to have gone.)
    I've checked for this issue on multiple emails and in multiple email boxes, and it seems to be a problem throughout mail.app -- and I've googled, too, but not found anything to suggest what is happening here, or how to fix it.
    Does anyone have any advice or ideas as to what's wrong, and/or how I could save images/attachments from my email? This is severely compromising my workflow.
    Thanks!

    post.user_wrote.label:
    Try control - clicking the attachment. You should get an option to display as icon. Select it and see if you can save it.
    If you want all attachments to display as icon, try running the Terminal command below.
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool YES
    Hi Eric,
    Thanks for taking the time to reply. Sadly, neither of your suggestions worked. I'm beginning to wonder whether saving attachments can be somehow disabled at sender level. Have you heard of such a thing? But then, it wouldn't account for this happening across mail.app...
    Cheers,
    H.

  • Lion Mail Dropping Attachments

    I'm having a very strange mail issue. Sometimes when I send an email with attachments all the attachments don't get to the recipient. It's happend twice, jpg's and a pdf were mailed one or the other get dropped. Recipient replied asking for the other attachments...

    I researched this problem in the forums and found a solution that sort of works to restore the paperclips. I copied it for anyone who has the same problem.
    1 - Create a rule in the Mail Preferences pane
    2 - Call it "Get My Paperclip Icons Back!"
    3 - Set conditions as below :
    A - If ALL of the following conditions are met :
    B - From Ends With [Your email address here]   (you can do this for multiple too]
    C - Any Attachment Name Contain "."  [with the quotations around the dot]
    Perform the following  actions :
    D - Mark as Read  [which really makes no impact on how its viewed]
    Click Ok.  When message "Do you want to apply your rules to messages in selected mailboxes?" I chose "Dont Apply".  [But you can click "Apply" if you are in the "Sent Folder"
    Then go to your sent folder, Select your messages [recent/all], and right click "Apply Rules" or from the menu Message -> Apply Rules.
    Voilla!  Paperclip icons are back.  Plus "Mark as Read" did no harm to your already colored/flagged sent emails.
    This worked for me but this still doesn't restore the photos that are included in Sent emails. I am going to make a bug report, though they probably think it's a feature not a bug. That this "feature" should have been added to Mail without notifying customers is unfortunate. I was afraid that my attachments weren't being sent. 

  • In mail, my attachments, both photos and documents appear in the body of the message.  How can I get my attachments to appear as a separate attachment and not as part of the message.  Thanks for your help, Karen.

    In mail, my attachments, both photos and documents, appear in the body of the message.  How can I get my attachments to appear as a separate attachment and not as part of the main message????  Thanks for your help, Karen.

    softwater wrote:
    ...and costs $14.99
    Yep! And if you absolutely need (or think you need) that functionality, it is worth every penny.
    As Don already pointed out, exactly what the recipient sees will depend on how they've set up their machine and what unnecessary 3rd party apps they might've installed to display attachments the way they want.
    In theory, that is true. In practice, Attachment Tamer will cause more of your messages to show up as plain-jane icons on the other end. The problem is, after all, people running Outlook 2003 and 2007. These people likely aren't doing many system modifications.
    If I were you, I'd use the free solutions provided above, save my money and let my recipients decide how they will handle their mail.
    I completely agree.

  • Snow Leopard Server Mail - need attachments from mail server no longer on line.

    Switched to GMail
    pulled in .pst file for outlook but it had been configured to leave attachments on server.
    the mail server is no longer online - how do I get the attachments?
    I have access to the server but do not want to risk the mail syncing with google and deleting the files on the old mail server.
    The export was not done cleanly - now I have to go back to pull from server.
    Is there a way to export a users mail with attachments from the server to a folder that can then be imported into regular mail program?
    To make it more fun the person is on a windows XP using outlook - so I will need to get it from the closed server to his outlook.

    Enable Finder to Show Invisible Files and Folders
    Open the Terminal application in your Utilities folder.  At the prompt enter or paste the following command line then press RETURN.
    defaults write com.apple.finder AppleShowAllFiles TRUE
    killall Finder
    To turn off the display of invisible files and folders enter or paste the following command line and press RETURN.
    defaults write com.apple.finder AppleShowAllFiles FALSE
    killall Finder
    Alternatively you can use one of the numerous third-party utilities such as TinkerTool or ShowHideInvisibleFiles - VersionTracker or MacUpdate.

Maybe you are looking for