Blind copy mail recipient seen

I just received a reply to an e-mail which I blind copied to someone else. The original recipient indicated they saw the blind copied recipient. Is this possible?

Welcome to the discussions, tbdixie.
No. The Bcc recipients are not included with the mail message. They are passed to your SMTP server, which then delivers the message to them. Get your original recipient to show you the headers of the message received from you, 'cos if they do include the Bcc recipients there is a MAJOR problem with Mail, and we would see alarm bells ringing all over the place.
AK

Similar Messages

  • Blind copy while sending a mail...

    Hi Friends,
    How to set a recipient under the blind copy recipient list (BCC) while sending a mail using the function module SO_DOCUMENT_SEND_API1. I have checked the flag <b>blind_copy</b> but not seeing that recipient under the bcc list. Some body please help in this.
    Thanx in advance.
    Ram

    See the example program :
    TABLES: SOLI.
       Data Declarations
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: SAPID     RADIOBUTTON GROUP ADDR,
                EMAIL_ID  RADIOBUTTON GROUP ADDR.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    SELECT-OPTIONS: ID  FOR SOLI-LINE NO INTERVALS.
    SELECT-OPTIONS: CC  FOR SOLI-LINE NO INTERVALS.
    SELECT-OPTIONS: BCC FOR SOLI-LINE NO INTERVALS.
    *PARAMETERS:     SENDER LIKE SOUD-USRNAM.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-009.
    PARAMETERS: SUB_LINE(60) TYPE C.
    SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-008.
    SELECT-OPTIONS:  TEXT1 FOR SOLI-LINE NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK B4.
    SELECTION-SCREEN BEGIN OF BLOCK B5 WITH FRAME TITLE TEXT-009.
    SELECTION-SCREEN BEGIN OF LINE.
    parameters: P_ATTACH as checkbox.
    selection-screen comment 3(30) text-010.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B5.
    DATA: MAIL_CONTENT LIKE SOLI OCCURS 0 WITH HEADER LINE,
          SUBJECT_LINE LIKE SOOD1-OBJDES.
       Start of program processing
    START-OF-SELECTION.
    Get the Body of the Message from the selection screen or from
    calling program
      LOOP AT TEXT1.
        MOVE   TEXT1-LOW TO MAIL_CONTENT-LINE.
        APPEND MAIL_CONTENT.
      ENDLOOP.
    Subject of the Message
      MOVE  SUB_LINE TO SUBJECT_LINE.
    call a routine to send the workflow message
      PERFORM SEND_EMAIL
              TABLES MAIL_CONTENT
              USING  SUBJECT_LINE.
    *&      Form  SEND_EMAIL
    Send Workflow message
    FORM SEND_EMAIL TABLES OBJCONT STRUCTURE MAIL_CONTENT
                    USING  TITLE   LIKE SOOD-OBJDES.
      DATA: RECEIVERS LIKE SOOS1 OCCURS 0 WITH HEADER LINE,
            TSOOD1 LIKE SOOD1,
            PACKING_LIST LIKE SOXPL OCCURS 0 WITH HEADER LINE,
            OBJCONT1 LIKE MAIL_CONTENT OCCURS 0 WITH HEADER LINE.
      DATA: BEGIN OF AT_HEADER OCCURS 1.
              INCLUDE STRUCTURE SOLI.
      DATA: END OF AT_HEADER.
      CLEAR: TSOOD1,
             RECEIVERS.
      REFRESH RECEIVERS.
      MOVE:  SY-LANGU       TO TSOOD1-OBJLA,
             'Email Notice' TO TSOOD1-OBJNAM,
             'C'            TO TSOOD1-OBJSNS,
             TITLE          TO TSOOD1-OBJDES.
           'SCHIAVONIR'   TO TSOOD1-OWNNAM.
    loop through each ID and move them to recipient table
      LOOP AT ID.
        TRANSLATE ID-LOW TO UPPER CASE.
        IF SAPID = 'X'.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                ' '          TO RECEIVERS-RECESC,
                 ID-LOW      TO RECEIVERS-RECNAM,
                'X'          TO RECEIVERS-SNDEX.
        ELSE.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                'U'          TO RECEIVERS-RECESC,
                'U-'         TO RECEIVERS-RECNAM,
                ID-LOW       TO RECEIVERS-RECEXTNAM.
        ENDIF.
        APPEND RECEIVERS.
        CLEAR RECEIVERS.
      ENDLOOP.
    loop through each CC and move them to recipient table
      LOOP AT CC.
        TRANSLATE CC-LOW TO UPPER CASE.
        IF SAPID = 'X'.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                ' '          TO RECEIVERS-RECESC,
                 CC-LOW      TO RECEIVERS-RECNAM,
                'X'          TO RECEIVERS-SNDEX,
                'X'          TO RECEIVERS-SNDCP.
        ELSE.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                'U'          TO RECEIVERS-RECESC,
                'U-'         TO RECEIVERS-RECNAM,
                CC-LOW       TO RECEIVERS-RECEXTNAM,
                'X'          TO RECEIVERS-SNDCP.
        ENDIF.
        APPEND RECEIVERS.
        CLEAR RECEIVERS.
      ENDLOOP.
    loop through each BCC and move them to recipient table
      LOOP AT BCC.
        TRANSLATE BCC-LOW TO UPPER CASE.
        IF SAPID = 'X'.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                ' '          TO RECEIVERS-RECESC,
                 BCC-LOW     TO RECEIVERS-RECNAM,
                'X'          TO RECEIVERS-SNDEX,
                'X'          TO RECEIVERS-SNDBC.
        ELSE.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                'U'          TO RECEIVERS-RECESC,
                'U-'         TO RECEIVERS-RECNAM,
                BCC-LOW      TO RECEIVERS-RECEXTNAM,
                'X'          TO RECEIVERS-SNDBC.
        ENDIF.
        APPEND RECEIVERS.
        CLEAR RECEIVERS.
      ENDLOOP.
      AT_HEADER = SY-DATUM.
      APPEND AT_HEADER.
      AT_HEADER = SY-UZEIT.
      APPEND AT_HEADER.
    IF SENDER EQ SPACE.
       SENDER = SY-UNAME.
    ENDIF.
      IF P_ATTACH EQ 'X'.
        PACKING_LIST-HEAD_START = 1.
        PACKING_LIST-HEAD_NUM   = 2.
        PACKING_LIST-BODY_START = 1.
        PACKING_LIST-BODY_NUM   = 9999.
        PACKING_LIST-FILE_EXT   = 'TXT'.
        APPEND PACKING_LIST.
        CLEAR  PACKING_LIST.
        APPEND LINES OF OBJCONT TO OBJCONT1.
        REFRESH OBJCONT.
      ENDIF.
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
                OBJECT_HD_CHANGE           = TSOOD1
                OBJECT_TYPE                = 'RAW'
           TABLES
                OBJCONT                    = OBJCONT
                RECEIVERS                  = RECEIVERS
                ATT_HEAD                   = AT_HEADER
                ATT_CONT                   = OBJCONT1
                PACKING_LIST               = PACKING_LIST
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                FOLDER_NOT_EXIST           = 4
                FOLDER_NO_AUTHORIZATION    = 5
                FORWARDER_NOT_EXIST        = 6
                NOTE_NOT_EXIST             = 7
                OBJECT_NOT_EXIST           = 8
                OBJECT_NOT_SENT            = 9
                OBJECT_NO_AUTHORIZATION    = 10
                OBJECT_TYPE_NOT_EXIST      = 11
                OPERATION_NO_AUTHORIZATION = 12
                OWNER_NOT_EXIST            = 13
                PARAMETER_ERROR            = 14
                SUBSTITUTE_NOT_ACTIVE      = 15
                SUBSTITUTE_NOT_DEFINED     = 16
                SYSTEM_FAILURE             = 17
                TOO_MUCH_RECEIVERS         = 18
                USER_NOT_EXIST             = 19
                X_ERROR                    = 20
                OTHERS                     = 21.
    ENDFORM.                               " SEND_EMAIL
    text elements
    BCC     Blind CC
    CC     Copy to
    EMAIL_ID     Email ID
    ID     ?...
    P_ATTACH     Send as Attachment?
    SAPID     SAP ID
    SUB_LINE     Subject
    TEXT1     Message

  • Copy mails are not going in journaled mailbox

    Hi,
    I have hybrid set up with domains,
    contoso109.com and contoso109cloud.onmicrosoft.com.
    Its a new set up with some number of users.
    I did set journal rule with below command,
    New-JournalRule -Name "Test Journal Rule" -JournalEmailAddress [email protected] -Scope Global -Recipient [email protected] -Enabled $true.
    Now whatever the mail sent to or recvied by [email protected]  should go a copy to journal mailbox
    [email protected] 
    But i am not seeing any copy mails in the inbox of [email protected] .
    Is this is some problem in setting up journal rule..?
    appreciate for any help.
    Thanks,
    Shankar

    Hi Shankar,
    I have some tests in my lab.
    The following cmdlet can be used to send all email messages that pass through
    [email protected] to [email protected]
    New-JournalRule -Name "journal rule test1" -JournalEmailAddress "[email protected]" -Scope Global -Recipient
    [email protected] -Enabled $true
    If you need to journal to external address, you need to create and configure the external SMTP journal recipient.
    Here is a thread for your reference.
    Configuring the external SMTP recipient in Microsoft Exchange
    (Note: It is not from Microsoft, please pay attention to refer to it.)
    http://pic.dhe.ibm.com/infocenter/email/v2r2m0/index.jsp?topic=%2Fcom.ibm.content.collector.doc%2Fconnectors%2Ft_afu_smtp_ex_recipient.htm
    Hope it helps.
    If there are any problems, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • How can I see who a Blind Copy was sent to AFTER it was sent?

    Hello. I often use Blind Copy, BCC, but if I go into my Sent file, it just indicates the first address it was sent to. Is there any way I can go back into my Sent file after the message was sent, and recall all the Blind Copy addressee's?
    Thanks for any comments.

    I use OS 10.3.9, but I think my reply applies to 10.2.x as well. I assume you are using Apple's Mail program.
    I did a test -- sent a message with a bcc. I went too my sent mailbox, and found the message. in the Mail menu, I chose preferences, and then Viewing. In Header Detail, I chose All. The bcc is listed there. Does this work for you?
    Frank

  • Info as to whether or not a blind copy has been sent

    Sometimes I like to recheck whether or not I have blind copied someone. When checking my sent mail, there doesn't seem to be any indication if this has actually been done. Is there a way to check on this??

    If you highlight the message in your sent folder, then select View -> Message - Long Headers the Bcc header will show and you can see.

  • BC or blind copy, where is it?

    How to I select BC or Blind Copy for emails being sent through iCloud?
    I sign into iCloud on the my Mac Book, and I do not see anyway to send a BC or BCC.  Also the iCloud is not picking up my gmail account.
    Any suggestions?
    Thanks in advance,
    Marty

    While logged into iCloud Mail, select Preferences in upper right, then Composing. Check "Show Bcc field" box.

  • Retrieve blind copy info

    I sent a message to many with blind copy addresses, but now I can't recall to whom the message was sent.  how do I retrieve the blind copy addresses. GMAIL does this so easily in sent mail.

    Regarding the discussion you have some time ago... I have never programmed a midlet but on the other hand I would like to develop a midlet that retrieves handset information and displays it in a way such as the "old" Nokia net monitor (the locked menu). The mobile is not a GPS device, but performs or receives an number of measurements or newtork paramaters such as the signal strength, the signal quality, the timing advance, BCCHs lists, offset values etc. I would like to know if we can have access to this information (through the Location API?) in order to process and display it accordingly as it is very difficult or impossible to find an midlet application that acts like a "network monitor". For example, the mobile displays the signal strength in the form of five bars. Hence, it is already capable of processing the measured in dBm signal strength value. Is there any news about that functionality during this year?

  • Using Windows: Send to -- Mail recipient, msg is sent OK, but not saved in Sent folder, with err msg about it. Sending from within Thunderbird: msg saved OK.

    When using Windows 8.1 context menu: Send to --> Mail recipient, message is sent OK, but not saved in Sent folder, with error massage: There was an error saving the message to Sent. Retry? (selecting Retry doesn't help).
    Similar issue happens when I open a ".eml" file and Reply of Forward it.
    When composing a new message from within Thunderbird, all is OK, including saving in the Sent folder.
    Already tried:
    Compacting the Sent folder.
    Compacting all folders of the account.
    Uninstall Thunderbird and install the latest version (31.6.0).

    When using Windows 8.1 context menu: Send to --> Mail recipient, message is sent OK, but not saved in Sent folder, with error massage: There was an error saving the message to Sent. Retry? (selecting Retry doesn't help).
    Similar issue happens when I open a ".eml" file and Reply of Forward it.
    When composing a new message from within Thunderbird, all is OK, including saving in the Sent folder.
    Already tried:
    Compacting the Sent folder.
    Compacting all folders of the account.
    Uninstall Thunderbird and install the latest version (31.6.0).

  • HT3228 I set up my work e-mail on iphone.  When I try to send an e-mail, an error code says "Cannot Send Mail", "recipient rejected by server because it does not allow relaying".  What does this mean and how do I correct it?

    I set up my work e-mail account on my iphone 4S.  When I try to send an e-mail message from my phone, an error message occurs "Cannot Send Mail" - "recipient was rejected by the server because it does not allow relaying".  What does this mean and how do I correct it?

    Get the correct mail server settings from your IT department.

  • [SOLVED] XFCE + Thunar: "Send to" mail recipient doesn't work

    Hi all,
    I'm not able to use the "Send to" -> "Mail recipient" Thunar's feature. Right-clicking on a file (or a group of files) and selecting the option, the following error is returned:
    Failed to execute default Mail Reader. Input/output error.
    I use Thunderbird as e-mail client (correctly configured into the "Preferred applications"), but the same happens with Sylpheed too, so I think this isn't an application-related issue.
    Any hints?
    Last edited by s@ndro (2010-11-01 07:41:40)

    I found the following:
    https://bugs.archlinux.org/task/7021?opened=834&status[0]=
    It's not very clear to me if this is an Arch or Thunar or Exo bug, anyway installing 'perl-uri' works for me.
    Marking as SOLVED

  • Mail created with "Send to Mail Recipient" disappear and are not sent

    I have a small setup with a SBS 2011 server (Exchange 2010) 10 users with Windows 8.1 and Outlook 2013.
    One user is trying to send mails with attachments to his college´s
     but they are never send, are not shown in sent items and can not be found on the server.
    The user right click on a PDF file and press "Send to Mail Recipient" Outlook opens his mail is entered into the receiver (internal receiver) and press send. The mail do not show up and as mentioned even in sent items.
      I then try to do the same but send through the address book in Outlook / Exchange and these messages appears as they should.
    One week later, the disappeared mails suddenly appears in the college’s mailboxes and it turns out there are some mails to external addresses as well, which were not sent until a week. All messages are now in sent mail but they have not
    appeared anywhere else before.
    I did some tests with the "send to" function which also had the mails disappearing - those mails has not turned up until now. (a week ago)
    Now the user (AND all colleagues)  are very nervous that something is wrong with their system and the mail does not arrive.
    It is only 1 user this has affected but he is responsible for the majority of sales in this company and they are very afraid that they are not responding correctly to large customers.
    Is there anyone who can help with debugging in such a case?
    I have tried repairing Outlook, started in safe mode, checked the mail server for hanging mails but nothing shows any errors.
    Thanks in advance.
    Michael Grøn
    Michael Gron

    Hi,
    Have the user logon OWA and send the attachment, will this issue persist?
    Please also confirm if the issue exists when inserting an attachment when composing a new email isntead of using the "Send to Mail Recipient" function.
    Since only one user has been affected, use MFCMAPI to find if the message is stuck in the user's mailbox:
    https://mfcmapi.codeplex.com/releases/view/118446
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Messages stuck in outbox when using "Send to Mail recipient" and outlook is closed

    A user who uses RPC over https all the time on his desktop in the office. In general
    he has no problem to send/receive emails. But when he tried to send a File through right click - > send to -> Mail recipient , New Email window opens and He changes
    the subject and add receipt and send email when outlook is close. The email stuck in outbox.
    any idea and how to fix it?
    Thanks in advance. 

    Hi,
    As what Roady says, it is an expected behavior. This is because the
    “spooler” which is something that manages the MAPI transports is working when Outlook is running. So when you sending messages when Outlook is not running, there is no spooler running, and so nothing is going to send your mail. The next time you launch Outlook,
    you will see the mail in the Outbox.
    For more information about this behavior, please refer to A trip back in time—the evolution of Outlook part of the following link:
    http://blogs.technet.com/b/office_resource_kit/archive/2013/08/15/the-mysterious-outlook-outbox.aspx
    Regards,
    Winnie Liang
    TechNet Community Support

  • Customer Contact Person as Blind Copy for Email

    Dear SAP Experts,
    Do you know where to set that a Contact Person for a customer will receive an email as blind copy (BCC) ?

    Hi Prabhu
    for Contact person -
    KNVK
    For email id -
    SZA1_D0100
    For customer --- RF02D
    Reward if useful to u

  • Mail Recipient Validation

    Does anybody have experience with mail recipient validation against LDAP for instance ?
    Any hints and suggestions appreciated.
    Thanks

    the MTA checks for it's own configuration in the directory pointed by the configutil parameter local.ldaphost and for user/group information in the one pointed by local.ugldaphost if you just made the default installation now both point to the same directory, but if you want your MTA check for user/group infromation against another directory, then you can set it with configutil -o local.ugldaphost <NAME_OF_THE_DIR_HOST>is that what you have in mind?

  • 2012 RemoteApp: file associations Emal links and Send to Mail Recipient.

    Hello
    Is it possible to get Outlook 2013 Remote app to open when you use "send to Mail Recipient"and click email to links?
    /Andreas
    /Andreas

    Hi,
    Thank you for posting in Windows Server Forum.
    As per my research, the way you are trying to open Outlook 2013 RemoteApp is not possible. 
    Thanks for your understanding and support!
    Regards.
    Dharmesh Solanki
    TechNet Community Support

Maybe you are looking for