Delivery receipt for mail

Is there a way to receive delivery receipts for email sent from iphone IOS8.1
Had a couple of cases when emails haven't arrived for some reason so would be good to get a message to say it's been delivered OK
Cheers

That would depend on using a mail service that offers it, as well as an app that supports it. In many cases, even though your service may support it, the recipient's may not. For what its worth, Microsoft's OWA app doesn't even support it (even though it is a function of Exchange Mail Services).
And frankly, most recipients find it - at best - an annoyance.

Similar Messages

  • How do i enable read or delivery receipt for Mail?

    how do i enable read or delivery receipt for Mail?

    I entered this code into terminal replacing "your name" with my email address:
    defaults write com.apple.mail UserHeaders '{"Return-Receipt-To" = "[email protected]"; "Disposition-Notification-To" = "[email protected]"; }'
    I've read it worked for some, but I could not get it to work. Does Mail automatically override this?

  • Read / delivery receipt for PO forms sent by email

    Hi Experts,
    I have one requirement to implement the delivery receipt for all the PO forms sent by email.
    I have a question that I need your support:
    - As we have different companies codes operating and not all would like to receive the delivery receipt, can I restrict the notifications, for example, by company code or by purchasing organization?
    Kind regards,
    Francisco

    Hi,
    It has to be with Co. Code but via Plant. You will have to maintain entries of plant (and preferably Co. Code) in a 'Z' table and write an enhancement to check entries in the table before sending. Those available shall be sent.
    Hope this helps!
    Reetesh

  • Exchange 2013 delivery reports for mail enabled public folder

    How can I get delivery reports for mail enabled public folders? Would I search the related public folder mailbox?

    Hi,
    When you track messages using Delivery Reports, you can only choose user mailbox when you select mailbox to search. Under the option "Mailbox to search", there is no mail-enabled public folder listed there for you to select from
    the address book.
    But you can search messages sent to or received from mail-enabled public folder.
    Track messages with delivery reports
    http://technet.microsoft.com/en-GB/library/jj150554(v=exchg.150).aspx
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Belinda Ma
    TechNet Community Support

  • Acknowledgment Of Receipt for Mail

    dear BlackBerry friends,
    I'm a big fan of BlackBerry devices. I used to have a Bold 9900. And my problem is that I can't set the acknowledgement of receipt for my mails. 
    If someone have an idea keep me in touch
    Take care

    Hey treelovic,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    Currently read receipts is not available for Email delivery on the BlackBerry Z10.  Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Receipts for mail messages

    To get receipts for my mail messages, I need to tweak one of the settings in terminal mode. What is the command?

    Is this what you are looking for? http://hints.macworld.com/article.php?story=20050512155856402

  • Read receipts for mail

    Is there any way to get a read receipt with Mail like there was when I had Outlook in a previous life? Cant find how to block a read receipt when requested either. Any help would be appreciated.
    Thanks

    The Mail application does not include a read receipt request for sent messages nor does it provide a read receipt without your knowledge when requested by the sender of a message when opening a received message.
    I consider this an invasion of privacy. A minor one but an invasion of privacy nevertheless.
    Via the Terminal, you can have Mail "request" a read receipt for all sent messages but this will work only if the recipient's email client supports this and the recipient enables the option.
    http://discussions.apple.com/message.jspa?messageID=2297045#2297045

  • How do I get read & delivery receipts for messages?

    How do I get delivery & read receipts for messages?

    You can only get Read receipts if the person you are messaging has enabled Read Receipts in their own settings menu.
    Delivery notifications are on by default, and appear below the last message sent.
    Note that these only work with iMessage, the blue messages.

  • Receipts for mail

    How do I get a read or delivered receipt for e-mail?

    If you want a Read Receipt (assuming your recipient is using Windows or sending mail through an Exchange server, quit Mail and enter this command in Terminal (with the quotes):
    defaults write com.apple.mail UserHeaders '{"Disposition-Notification-To"="[email protected]";}'
    substituting "[email protected]" with your real email address. After entering the command, press Enter and then quit Terminal. All emails sent from now on will include a request for a Read Receipt, though you're not guaranteed to get one.
    If you want to delete that Read Receipt request in the future, enter this command in Terminal and press Enter:
    defaults delete com.apple.mail UserHeaders
    Mulder

  • Return receipt for mail

    how can one set mail to mark that mail has been read by recipient

    Check the forum first The answer is here:
    http://discussions.apple.com/thread.jspa?messageID=713255&#713255

  • Email read and delivery receipt

    Hi,
    I an sending a mail from SAP to the employees outlook and the sender is the common mail box which is entered on selction screen.
    Our requirement is that the common email box should recieve read and delivery receipt for the mail.
    Please tell me how to do it.
    I am uisng the following code to send the mail.
        DATA : lt_att_content_hex TYPE solix_tab,
               lv_subject         TYPE so_obj_des,
               lv_async           TYPE c,
              " lx_email           TYPE type_email,
               lv_email           TYPE adr6-smtp_addr.
        DATA:  lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
        CLASS  cl_bcs DEFINITION LOAD.
        DATA:  lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
    Message body and subject
        DATA:  lt_message_body TYPE bcsy_text VALUE IS INITIAL,
               lo_document     TYPE REF TO cl_document_bcs VALUE IS INITIAL.
    Create recipient
        DATA:  lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
        lo_send_request = cl_bcs=>create_persistent( ).
                   TRY.
        lo_send_request->asynchronous(
          RECEIVING
            result = lv_async ).
                    CATCH cx_send_req_bcs .
                   ENDTRY.
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer     = pdf_xstring "PDF file from function module
          TABLES
            binary_tab = lt_att_content_hex.
        CONCATENATE  ': ' pn-begda+0(4) 'Benefit. Statement' INTO lv_subject
        SEPARATED BY space.
        DATA: lx_string TYPE string.
    Message Body
        APPEND ' Body' to lt_message_body.
        lo_document = cl_document_bcs=>create_document(    i_type = 'HTM'
                                                           i_text = lt_message_body
                                                           i_subject = lv_subject ).
        TRY.
            lo_document->add_attachment(
                          EXPORTING
                          i_attachment_type = 'PDF'
                          i_attachment_subject = lv_subject
                          i_att_content_hex = lt_att_content_hex ).
          CATCH cx_document_bcs INTO lx_document_bcs.
        ENDTRY.
    Add attachment
    Pass the document to send request
        lo_send_request->set_document( lo_document ).
        lo_recipient = cl_cam_address_bcs=>create_internet_address( 'XYZ@XYZ' ).
    Set recipient
        lo_send_request->add_recipient(
        EXPORTING
        i_recipient = lo_recipient
        i_express = 'X' ).
        lo_send_request->add_recipient(
        EXPORTING
        i_recipient = lo_recipient
        i_express = 'X' ).
    Create sender
        DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
              l_send TYPE adr6-smtp_addr.
        l_send = p_email.
        lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    Set sender
        lo_send_request->set_sender(
        EXPORTING
        i_sender = lo_sender ).
       TRY.
        lo_send_request->set_status_attributes(
          EXPORTING
             i_requested_status = 'A'
             i_status_mail      = 'A' )
        CATCH cx_send_req_bcs .
       ENDTRY.
    Send email
        DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
        lo_send_request->send(
        EXPORTING
        i_with_error_screen = 'X'
        RECEIVING
        result = lv_sent_to_all ).
        COMMIT WORK.
        MESSAGE 'The form has been emailed to the Manager' TYPE 'S'.
        CLEAR lt_message_body

    Hi,
    For reciepts to work the basis setting needs to be activated.
    SCOT->Settings->Confirmation of Receipts

  • How to make "no delivery receipts" the default?

    Is there a setting to disable the delivery receipt for all files you send? Instead of having to go to each file in the "Sent Files" list and manually uncheck the "Notify when recipients viewed" box? Currently, in SendNow, you can set that option before even sending the file and the option remains sticky when you log-in the next time.

    Hi otsukaric,
    Adobe Send doesn't currently offer the option to set notification preferences as a default. I can't comment whether that feature will be available later, but you are welcome to continue to use Adobe SendNow if you prefer.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Witch plug-in for mail delivery recipient

    Hello,
    does enyone know witch plug-in, delivery recipient, i have to download for "mail"? I'm looking for it on www.pure-mac.com and www.hawkwings.net/plugins, but i don't know what to look for to get a delivery recipient when i send an email...
    thx

    Welcome to the discussions, goliat.
    It is, I think, a plug-in to add a delivery receipt request to your emails that you are looking for. (A recipient is a person who receives Try Hawk Wings » Blog Archive » AppleScript for Return Receipts
    AK

  • E-mail Delivery receipts cannt be received.

    Hi All,
    I have a small query regarding JavaMail. I cannot receive e-mail delivery receipts. I have set the property Return-Receipt-To to the header of the email. Please find the email header of the email bellow. What can be the problem? I checked my mail server, It sends delivery receipts to the mail sent thought mail clients (outlook)
    Further , I have set read-receipts for the mail. I works fine :). Please help me to solve this.
    Microsoft Mail Internet Headers Version 2.0
    Received: from ms-mailsvr.****.com ([10.5.69.15]) by cs-mailsvr04.*****.com with Microsoft SMTPSVC(6.0.3790.3959);
          Thu, 18 Jun 2009 18:50:35 +0530
    Received: from MTMISTEAM.tipptase.com ([10.5.69.35]) by ms-mailsvr.****.com with Microsoft SMTPSVC(6.0.3790.3959);
          Thu, 18 Jun 2009 18:50:32 +0530
    X-TM-IMSS-Message-ID:<[email protected]>
    Received: from ****.****.com (****.*****.com [*.*.*.*]) by mtmisteam.tipptase.com ([******]) with ESMTP (TREND IMSS SMTP Service 7.0) id 7ce60b9700006581 ; Thu, 18 Jun 2009 18:43:50 +0530
    Message-ID: <22869314.1245330204034.JavaMail.root@***.*****.com>
    Date: Thu, 18 Jun 2009 18:33:24 +0530 (IST)
    From: mymail@*****.com
    To: rcvrmail@****.com
    Subject: FAQ: Submit a new question
    Mime-Version: 1.0
    Content-Type: text/html;
         charset="utf-8"
    Content-Transfer-Encoding: 7bit
    Disposition-Notification-To: mymail@*****.com
    Return-Receipt-To:  mymail@*****.com
    X-TM-AS-Product-Ver: IMSS-7.0.0.6298-5.6.0.1016-16710.007
    X-TM-AS-Result: No--15.865-5.0-31-1
    X-imss-scan-details: No--15.865-5.0-31-1
    X-TM-AS-User-Blocked-Sender: No
    Return-Path: mymail@*****.com
    X-OriginalArrivalTime: 18 Jun 2009 13:20:32.0460 (UTC) FILETIME=[8EA100C0:01C9F017]

    I tried with the options you have provided in the SMTPMessage class. But still i cannot receive the delivery status notifications.
    I can get the read recipt. The Destination server is configured properly. Is there a technical limitation? I tried to use javax.mail.internet.MimeMessage too. it does not work properly too.
    If this is a technical limitation or any other issue can you please give me a reference for that :) ?

  • My account sending hidden SPAM e-mails, i receive only mail delivery failure for e-mails that i didn't send

    My account sending SPAM e-mails but i can't find it in sent folder, i receive only undelivered message response for messages which i didn't send and problem is not on provider server i checked it out.
    Examples of server response:
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    SMTP error from remote mail server after end of data:
    host mx1.optonline.net [167.206.4.77]: 554 5.7.1 Spam detected by Cloudmark content scanner. Message rejected.
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from [181.64.16.205] (helo=kiwqdljpf)
    by smtp2.neobee.net with esmtpa (Exim 4.74)
    (envelope-from <[email protected]>)
    id 1WPiCY-0004IY-2G
    for [email protected]; Tue, 18 Mar 2014 01:48:20 +0100
    Subject: FirmViagra
    Date: Mon, 17 Mar 2014 18:41:36 -0700
    To: <[email protected]>
    From: "Sleb Icap" <[email protected]>
    Mime-Version: 1.0
    Content-Type: text/plain; charset=utf-7
    X-Spam-Score: 1.2 (+)
    X-Scan-Signature: 05e778587fdac215ad5fe7047e8f78ed
    http://holzstark.at/opportune.htm?la
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    SMTP error from remote mail server after RCPT TO:<[email protected]>:
    host mx.coxmail.com [68.99.120.4]: 550 5.1.1 <[email protected]> recipient rejected
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from [181.64.16.205] (helo=kiwqdljpf)
    by smtp2.neobee.net with esmtpa (Exim 4.74)
    (envelope-from <[email protected]>)
    id 1WPiCk-0004IY-B6
    for [email protected]; Tue, 18 Mar 2014 01:48:32 +0100
    Subject: SweetDrugs
    Date: Mon, 17 Mar 2014 18:41:48 -0700
    To: <[email protected]>
    From: [email protected]
    Mime-Version: 1.0
    Content-Type: text/plain; charset=utf-8
    X-Spam-Score: 2.3 (++)
    X-Scan-Signature: 05e778587fdac215ad5fe7047e8f78ed
    http://selapak-cambodia.com/chic.html?zogyzeno
    My configuration of Thunderbird is:
    Application Basics
    Name Thunderbird
    Version 24.3.0
    User Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0
    Profile Folder
    Show Folder
    (Local drive)
    Application Build ID 20140131124303
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Crash Reports about:crashes
    Memory Use about:memory
    Mail and News Accounts
    ID Incoming server Outgoing servers
    Name Connection security Authentication method Name Connection security Authentication method Default?
    account1 (pop3) pop3.neobee.net:110 plain passwordCleartext smtp.neobee.net:25 alwaysSTARTTLS passwordCleartext true
    account2 (none) Local Folders plain passwordCleartext
    account3 (pop3) pop.mail.yahoo.com:995 SSL passwordCleartext smtp.mail.yahoo.com:465 SSL passwordCleartext true
    account4 (pop3) pop.mail.yahoo.com:995 SSL passwordCleartext smtp.mail.yahoo.com:465 SSL passwordCleartext true
    account5 (pop3) pop.mail.yahoo.com:995 SSL passwordCleartext smtp.mail.yahoo.com:465 SSL passwordCleartext true
    Extensions
    Name Version Enabled ID
    Test Pilot for Thunderbird 1.3.9 false [email protected]
    Important Modified Preferences
    Name Value
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    browser.cache.disk.smart_size_cached_value 358400
    dom.max_chrome_script_run_time 0
    extensions.lastAppVersion 24.3.0
    font.internaluseonly.changed true
    font.name.monospace.el Consolas
    font.name.monospace.tr Consolas
    font.name.monospace.x-baltic Consolas
    font.name.monospace.x-central-euro Consolas
    font.name.monospace.x-cyrillic Consolas
    font.name.monospace.x-unicode Consolas
    font.name.monospace.x-western Consolas
    font.name.sans-serif.el Calibri
    font.name.sans-serif.tr Calibri
    font.name.sans-serif.x-baltic Calibri
    font.name.sans-serif.x-central-euro Calibri
    font.name.sans-serif.x-cyrillic Calibri
    font.name.sans-serif.x-unicode Calibri
    font.name.sans-serif.x-western Calibri
    font.name.serif.el Cambria
    font.name.serif.tr Cambria
    font.name.serif.x-baltic Cambria
    font.name.serif.x-central-euro Cambria
    font.name.serif.x-cyrillic Cambria
    font.name.serif.x-unicode Cambria
    font.name.serif.x-western Cambria
    font.size.fixed.el 14
    font.size.fixed.tr 14
    font.size.fixed.x-baltic 14
    font.size.fixed.x-central-euro 14
    font.size.fixed.x-cyrillic 14
    font.size.fixed.x-unicode 14
    font.size.fixed.x-western 14
    font.size.variable.el 17
    font.size.variable.tr 17
    font.size.variable.x-baltic 17
    font.size.variable.x-central-euro 17
    font.size.variable.x-cyrillic 17
    font.size.variable.x-unicode 17
    font.size.variable.x-western 17
    mail.openMessageBehavior.version 1
    mail.winsearch.firstRunDone true
    mailnews.database.global.datastore.id d3f7cbbc-ff7c-49f8-8265-081ff16f23e
    network.cookie.prefsMigrated true
    places.database.lastMaintenance 1394703331
    places.history.expiration.transient_current_max_pages 104858
    plugin.importedState true
    plugin.state.flash 0
    plugin.state.java 0
    plugin.state.npauthz 0
    plugin.state.npbrowserplugin 0
    plugin.state.npctrl 0
    plugin.state.npdeployjava 0
    plugin.state.npgeplugin 0
    plugin.state.npgoogleupdate 0
    plugin.state.npnokiasuiteenabler 0
    plugin.state.nppdf 0
    plugin.state.npspwrap 0
    plugin.state.npvlc 0
    security.default_personal_cert Select Automatically
    security.disable_button.openCertManager false
    security.disable_button.openDeviceManager false
    security.OCSP.require true
    Graphics
    Adapter Description Intel(R) HD Graphics Family
    Vendor ID 0x8086
    Device ID 0x0116
    Adapter RAM Unknown
    Adapter Drivers igdumd64 igd10umd64 igd10umd64 igdumdx32 igd10umd32 igd10umd32
    Driver Version 8.15.10.2462
    Driver Date 7-26-2011
    Adapter Description (GPU #2) NVIDIA GeForce GT 630M
    Vendor ID (GPU #2) 0x10de
    Device ID (GPU #2) 0x0de9
    Adapter RAM (GPU #2) 2048
    Adapter Drivers (GPU #2) nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Driver Version (GPU #2) 9.18.13.3165
    Driver Date (GPU #2) 10-23-2013
    Direct2D Enabled false
    DirectWrite Enabled false (6.2.9200.16571)
    ClearType Parameters ClearType parameters not found
    WebGL Renderer false
    GPU Accelerated Windows 0
    AzureCanvasBackend skia
    AzureFallbackCanvasBackend cairo
    AzureContentBackend none
    JavaScript
    Incremental GC 1
    Accessibility
    Activated 0
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.2 4.10.2
    NSS 3.15.4 Basic ECC 3.15.4 Basic ECC
    NSS Util 3.15.4 3.15.4
    NSS SSL 3.15.4 Basic ECC 3.15.4 Basic ECC
    NSS S/MIME 3.15.4 Basic ECC 3.15.4 Basic ECC
    Please help me to solve this problem.

    By the way, some non-delivery receipts (NDRs) are themselves spam messages with malicious attachments designed to infect your computer, so be cautious about opening any of those.

Maybe you are looking for

  • Airport Express Drops Connection Every 3 Minutes

    This has to be an easy fix. Airport Express holds a connection fine when I'm sending music from it, but flashes amber for half a second every three minutes or so. Here is the log file... Is this normal? Feb 9 13:19:53 5 Internet Configuration leased

  • Data fields selected in a form are not displaying

    I have selected "Size" & "Outlook Data File" as 2 fields that I need to see on the front tab of all my contacts.  In testing to see if it works I opened a new contact (blank).  Upon it trying to open I get the same error twice  "The Property does not

  • How to find CPO of given customer id ?

    Hi all, If we have customer id and want to know its associated CPO #(Customer Purchase order no.) then through which table and fields name have to access.Please suggest me. Regards, Ashish K

  • Running CS3 on a Mac that has CS4 on it already

    Due to a glitch in CS4 that scrambles data in a data merge, it's been suggested to do the merge in CS3, (at least till there's a fix for CS4). Can I install CS3 on my Mac that's already got CS4 on it? Should I open a new user account on the Mac and p

  • What does the Smart Cover do? Shut it off or just standby as the lock button?

    Hi: Is the Smart Cover any must to have? Isn't standby/turn off/lock the iPad 2 with the Smart Cover the same as pressing the lock button? What does it really do the Smart Cover to the system? Thanks!