How Request Read Receipts in Mac OS X Mail?

defaults write com.apple.mail UserHeaders '{"Disposition-Notification-To" = "Name <email@address>"; }' not work.
it says
No such file or directory
-bash: }’: command not found
what can I do? What name is this name?

babowa wrote:
Since Mail does not support read receipts, I wonder if any workaround would actually work?
That used to work to send read receipts, but I don't know if it still does. The failures the OP posted indicate a malformed command, not that it won't still work.

Similar Messages

  • How to Request Read Receipts in Mac OS X Mail

    Hi
    Would like to be able to know when the people I send email to actual read that email I send them. Is it possible to setup a option in mail so you get a receipt from the person who reads your email.
    Thanks

    Mail doesn't support read receipts. But you can do an "all or nothing" deal using Terminal:
    http://email.about.com/od/macosxmailtips/qt/et_request_recp.htm

  • As in the "Mail" request read receipt message?

    As in the "Mail" request read receipt message Mac OS 10.6.8?

    TaoChitpol wrote:
    By the way, the problem happens with the account of MS Exchange service, I don't know if this is the cause of the problem.
    I think yes.  The encoding is being corrupted somewhere, probably Exchange.  There is nothing you can change on the iPad other than the OS languagel, to see if that helps.  You can also tell Apple at
    http://www.apple.com/feedback/

  • Read receipts in Mac mail.

    I'll prefix this with the fact that I'm a total Macbook and Yosemite newb. As in I have not used a mac since 1992.
    I thought I had found an article on how to send and receive read receipts in Mac mail, but after searching again, all I found was some obscure comments that read receipts were really not necessary, so it was not a big deal, and another article that showed how to create rules via the unix console...not really what I was looking for. I just was wondering if there is not a setting I am missing? Business people DO need, as a matter of doing business, require read receipts, for obvious reasons. If you are not in business or government this whole thread will be baffling and boring...sorry.
    Finally , if not, will read receipts from gmail , show up in Mac mail if it is set up? ...or I would be just better to wash my hands of Mac mail, and use my Gmail, and if so, is there a way to do this...an extension perhaps, in Safari?
    Thanks for any and all help.
    Dave.

    Rodolfo,
    I guess you are missing my somewhat sarcastic sense of humour, and for that, I apologize.
    Of course OS X can get viruses, malware and pesky adware. I was merely poking fun, at those, who are no so technically inclined, and tend to just "drink the koolaid" regardless of the established facts and body of evidence. I am acutely aware which operating systems are vulnerable and why. In my over 20 years of using computers for work and play, in my experience, UNIX has been the most secure...which is why it is the choice of governments' world-wide, and the least was WIN95-98. I had no virus' or malware at all with Win7...using MaCaffe, MalwareBytes, and SuperAdBlocker (which is a Chrome extension which seems to work fine on OS X) And no they did not slow down my machines (Norton did...very slow) Hackers find no challenge in writing for only 9% ( OS X )  of the units out there, as the 90% is a much bigger, and more lucrative target. It has nothing to do with the inherant inability for OS X to get viruses, malware or adware.
    I am optimistic for the future of OS X, as it is slowly gathering steam, and garnering lots of attention from other platform users.
    The biggest danger any any OS is smugness.
    Dave

  • TS3276 How do I request Read Receipts in Mail?

    Other mail programmes like Thunderbird allow me to request a read receipt so that I know the email has been received and read. I connot find this useful function in Apple's Mail. Am I just missing it?

    See here:
    http://hints.macworld.com/article.php?story=20050512155856402
    There's every likelihood that your recipients' email clients are configured to ignore receipt requests, though. There's nothing you can do on your end to guarantee that your recipients will even see the requests, much less respond to them.

  • How to track Delivery and Read Receipts, to update the e-mail status?

    Hi,
    I got bit confused, How can I came to know that my e-mail has been successfully sent or not without opening my inbox.
    Am sending 50,000 mails per day by using java mail sending program, while sending I am enabled Delivery and Read receipt and I saved message-id in database and I got that receipt back to my inbox.
    Then I am reading my Inbox using another java program based on message-id concept, And also I need to parse the body of the mail to update the reason if any message failed.
    Here my Inbox received more than 1 lac mails per day as receipts. Because am sending 50,000 mails, So, I got 2 receipt mails for 1 mail, totally 50,000*2=1lac mails in Inbox. My problem is, my reading Inbox java program not able read all 1lac mails at one day. It just reading 5,000 mails per day. When my next day mail sending process started, again i am getting another 1 lac receipts.
    Since I am not able to read and delete the receipts completely, mail counts in my inbox getting accumulated. So, I got stuck, How can I do this?
    If anybody have any other ideas please share with me.
    Already I surfed on net lot, but I can`t find solution for this concept.
    Thanks in advance.

    Hi EJP,
    step 2: Taking total inbox length using message.length
    The message count is available via Folder.getMessageCount*().//ok I will try this one.*
    step 3: In for loop, for(i=0; i < = n; i+){+ //--here we are getting mails one by one
    That should be i < n, not i <= n. *//here I was wrongly specified, I used i<n only.*
    step 5: In that mail body we are searching our own unique keyword(which we set for our unique mail reference)
    Searching how?
    In order to find the keyword, we are getting entire text/plain mail body using below method,
    //To get body plain/text body part start here
         public static void getTextPlainBodyPart(Part p) throws Exception {
              if (p.isMimeType("text/plain")) {
                   if (!(showStructure) && !(saveAttachments)){
                       lstr = (String)p.getContent();
              }else if (p.isMimeType("multipart/*")) {
                 Multipart mp = (Multipart)p.getContent();
                 level++;
                  int count = mp.getCount();
                  for (int i = 0; i < count; i++){
                 getTextPlainBodyPart(mp.getBodyPart(i));
                  level--;
    //To get body plain/text body part end hereAbove method will return entire body of the mail in one string variable, Eg: String mailBody;(*mailBody variable contains entire body)*
    Then using mailBody variable we are searching our own keyword(which we set for our unique mail reference while sending mail) using below technique,
    if(lstr.indexOf("!$*#*$") != -1 && lstr.lastIndexOf("$*#*$!") != -1){
    KeyWord = lstr.substring(lstr.indexOf("!$*#*$")+3,lstr.lastIndexOf("$*#*$!"));
    //to get reason alone
    if(lstr.contains("Reason:")){
         Pattern p = Pattern.compile("Reason:\\s([^\\n])*");
    Matcher m = p.matcher(lstr);
    boolean result = m.find();
         while(result) {
            reason = m.group();
             result = m.find();
    //System.out.println("Reason:>>>>"+reason);
    }else{
         reason = "";
    }After getting that keyword in KeyWord variable,
    then we are updating our database using that KeyWord,(here we are using KeyWord variable in where condition in update query)
    Note:_ KeyWord is nothing but, we were stored all our unique keyword against every mails while sending.So, If when get that keyword while reading the receipts,then we can update our table using that same keyword.
    guide how can I do this effieciently. And if you any other new concept please share with me.
    Thanks in advance..
    Edited by: EJP on 17/03/2011 16:54: added code tags. Please use them. Code is 100% illegible otherwise.

  • Read Receipt for Email using Java Mail

    hi,
    i am trying to implement requesting the read receipts for the email sent out.
    for that i got some information that by setting header "Disposition-Notification-To" and the value should be "<Destination email address>"
    should i need to make any changes in the mailing server or i can handle it in my code to save it in the database.
    can some one please guide me so that i can implement this.
    Thank You

    Hi Bshannon,
    From your response, I understand that setting Disposition-Notification does not give a complete result for the read-receipts (We do not receive notifications from all domains, I tried gmail, yahoo, and other domains as well).
    Since your reply was sent 2 years ago, I would like to know any new solution found to get a complete read-receipt  notifications from all domains?.
    Your response would be highly appreciated.
    Thanks,
    Stalin R

  • HOW TO READ AND OPEN Zip files IN MAIL?

    Anyone know how to open and read attached zip-files in iPhone 3G mail?
    Thanks in advance,
    Alessio

    Hi Alessio,
    The iPhone does not support reading or uncompressing .zip files.
    +Mail attachment support+
    +Viewable document types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft Word); .htm and .html (web pages); .key (Keynote); .numbers (Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt and .pptx (Microsoft PowerPoint); .txt (text); .vcf (contact information); .xls and .xlsx (Microsoft Excel)+
    http://www.apple.com/iphone/specs.html
    Jason

  • How to read the message body in a mail

    how can we read the message body of a mail. i am using pop3 server for reading the mails. my program is
    public class GetMessageExample {
    public static void main (String args[]) throws Exception {
    String host = args[0];
    String username = args[1];
    String password = args[2];
    Properties props = new Properties();
    Session session = Session.getInstance(props, null);
    Store store = session.getStore("pop3");
    store.connect(host, username, password);
    Folder folder = store.getFolder("INBOX");
    folder.open(Folder.READ_ONLY);
    BufferedReader reader = new BufferedReader (
    new InputStreamReader(System.in));
    Message message[] = folder.getMessages();
    for (int i=0, n=message.length; i<n; i++) {
    System.out.println(i + ": " + message.getFrom()[0]
    + "\t" + message[i].getSubject());
    System.out.println(
    "Do you want to read message? [YES to read/QUIT to end]");
    String line = reader.readLine();
    if ("YES".equals(line)) {
    message[i].writeTo(System.out);
    } else if ("QUIT".equals(line)) {
    break;
    folder.close(false);
    store.close();
    i am getting the following exception
    Exception in thread "main" java.lang.NoSuchFieldError: contentStream
    at com.sun.mail.pop3.POP3Message.getContentStream(POP3Message.java:115)
    at javax.mail.internet.MimePartDataSource.getInputStream(MimePartDataSou
    rce.java:61)
    at com.sun.mail.handlers.text_plain.getContent(text_plain.java:65)
    at javax.activation.DataSourceDataContentHandler.getContent(DataHandler.
    java:755)
    at javax.activation.DataHandler.getContent(DataHandler.java:511)
    at javax.mail.internet.MimeMessage.getContent(MimeMessage.java:1072)

    The Part interface that the Message class implements describes 3 ways for getting the content of a message. To use an Input Stream, you can call the getInputStream() method on the message itself, rather than System.in.
    Hope this helps!

  • Obtaining a read receipt when sending by mail in osx or iOS. How?

    How do you obtain read receipts in OSX mail?

    How to Request Read Receipts in Mac OS X Mail

  • In Mail on my Mac how do I request a read receipt?

    In Mail on my Mac how do I request a read receipt?

    Greetings barendfromport,
    Welcome to the Apple Support Communities!
    I understand that you would like a read receipt in Mac Mail on your computer. For this question, I would refer you to the attached discussion. 
    How to set up read receipts in mail on OSX Mave... | Apple Support Communities
    Cheers,
    Joe

  • How do i get a read receipt for email

    How do I get a read receipt in mac e-mail?

    There is a workaround, but it's not reliable, so I don't recommend it.
    Email receipts are not a standard feature of email. Some email programs support it, some don't. If someone reads email online (ie, in webmail), no read receipt is created. Even if someone uses Outlook (which supports it), they have to turn the send-receipt feature on.
    So if you don't receive a receipt, you can not, unfortunately, know for sure that the message was not read.
    Matt

  • How to do read receipts

    I can find ways to do for mac os 10.3 and so on, but not on 10.4. I am using 10.4.6 and really need to have a way of having read receipts to work. I am on about getting them not sending them back to others emails. I want to mark emails to have read receipts - is this possible in mail?

    There is a way to convince Mail in Tiger to always request a delivery notification (if the recipients' mail client supports that feature and the recipient has not turned them off)
    Note: the following relies no undocumented features of Mail and I don't take any responsability if things break for you...
    • Quit Mail
    • Open Terminal (/Applications/Utilities/)
    • Enter the folowoing text (make sure to keep all quotes exactly as is!)
    defaults write com.apple.mail UserHeaders '{"Disposition-Notification-To"="your@address";}'
    (of course, using your correct email address instead of "your@address")
    • All future messages sent with Mail will now include the Disposition-Notification-To header which is the one asking for a return receipt.
    If you wish to turn off this feature in the future, type the following in the Terminal:
    defaults delete com.apple.mail UserHeaders
    Andreas

  • Disable read receipts on iPhone 4 IOS 4.1

    I have some clients who request read receipts when sending me emails and although i have turned the automatic response off from Outlook client when i open the mail on my iPhone it will automatically send a notification to the user. I understand that the outlook configuration has no bearing on the iPhone behaviour but i cannot see the option to disable this function when viewing new emails from the handset?
    Is this possible via the native email client or could anyone recommend a 3rd party app which will allow push functionality when connecting to a Microsoft exchange server?
    Thanks Chris

    There is no such option available on the iPhone and no 3rd party app can provide this option since no 3rd party app has access to private iPhone APIs and such an option would require that.
    Push access for received messages is supported with an Exchange account accessed via ActiveSync. Microsoft's ActiveSync protocol is what allows/provides for this which Apple has licensed from Microsoft for use with the iPhone, iPod Touch, iPad, and with the Mail.app, Address Book, and iCal on a Mac running Snow Leopard - Apple's current OS X version.

  • How to ask a receipt acknowledgement to a sent mail

    Is an option for mails to get an automatic receipt acknowledgement to a sent mail (when it is read by the recipient) ?

    That depends on which webmail service you're using. Many don't offer the option to request a read receipt (e.g. Outlook.com, Yahoo! Mail, [https://support.google.com/mail/answer/1385059?hl=en Gmail]).
    You can request read receipts if you use an e-mail client like [http://www.mozilla.org/thunderbird/ Thunderbird].
    * [[Configuration Options for Sending Messages]]

Maybe you are looking for