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.

Similar Messages

  • 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

  • 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

  • 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.

  • Automatic blind copy to myself

    Hi,
    how do I set-up an automatic blind copy to my main email account, when i sent an email from my BB Z10 device?
    or is there any other alternative function that I store / have the sent emails from my BB Z10 in my outlook inbox / sent folder?
    many thanks
    IG

    Are you using an IMAP email server, if so, those sent from the Z10 emails should appear in your server in the Sent folder.
    If not, check your server for any Auto BCC settings... most have them.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Problems with sending carbon copy and blind copy with gmail

    I recently started using Safari and would like to continue as it is fast. But have problems with it when I use Gmail that I don't have in Firefox or Internet Explorer. For example when I want to forward and email to several people using the blind copy or carbon copy feature - each time I click a name i have to move the cursor back into the box manually because each time you add a name the cursor jumps to the subject line automatically. I forward a lot of email, How can I make using these features work with Safari? Any help is appreciated. Thanks.

    I would delete the account on the iPod an recreate the account. It is easy to make an error or enter the setting and hard to find the error.

  • 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

  • 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?

  • When I hold my finger down and it says copy, where do I retrieve the copy.

    WWhen I hold my finger on the screen to copy something how and where do I retrieve the copy?

    its a copy and paste function. It doesnt actually store a copy anywhere.

  • Can I blind copy someone on emails that I send to others? If yes, how?

    I would like to be able to blind carbon copy on some emails that I send to others. Can I do this with this program? If yes, please tell me how. Thank you.

    You choose Bcc instead of To.
    http://kb.mozillazine.org/BCC

  • When I right-click a page and select 'copy' where does the copy go on my computer?

    I'm just trying to copy the page but I don't know where it goes. I'm assuming that's what the copy function is for?

    Copy means to copy something to the clipboard. If there's any selected text, for instance, that text will copied. Depending on where you click, you can copy images and links to the clipboard.
    To copy a page to your disc drive, you use the Save Page As... function on the right click menu.
    Note that you will not see the Save Page function on the right click menu if any text is selected (highlighted) on the page or if you right click on an image.

  • My printer is not working will not even copy where do i get it fixed

    printer is broke will not even do a copy. how do i get it fixed. never uesd even once

    Please read this post then provide some details.  What printer model? What operating system? How is the printer connected - USB, wired LAN, Wireless LAN, bluetooth? Are there any error messages on the printer or computer screen?  Was the driver installed correclty?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Getting the 2nd copy - where's the download link?

    I just purchased Adobe Acrobat Pro subscription and downloaded it on my personal computer.  Now I'd like to download the second copy on my work computer.  How do I get the download link?  I thought it would be there when I signed in to my Adobe account, but I don't see any instructions or link.

    http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    Please save your download for the future. These are not available indefinitely.

  • When  i choose to highlight and copy,,where can i retrieve that copy and where does it copy to

    hello,when i highlight and the option to copy appears ( Ipad ) and how do i retrieved what i just copied,,,,,my  Ipad also will not let me download an acrobat reader

    This is copied form the App Description page in iTunes. If you are running iOS 4.3 - you should be able to install Adobe Reader.
    Requirements: Compatible with iPhone 3GS, iPhone 4, iPhone 4S, iPhone 5, iPod touch (3rd generation), iPod touch (4th generation), iPod touch (5th generation) and iPad. Requires iOS 4.3 or later. This app is optimized for iPhone 5.
    Go to Settings>General>About>Version to check what iOS version you are running.
    When you tap and hold down on the text - and bring up the Copy Option - hold down on Copy until it turns blue. Then launch the notes app. Tap on the + sign to create a new note. Tap and hold down on the yellow note lined paper in the app until the Paste option pops up - then tap Paste. That will let you see if you did it correctly.

Maybe you are looking for

  • Unable to load project after cut

    Hi, I've a new (few days old) iMac, 27inch i5, 24G Ram, OS X 10.9.1, Logic Pro X 10.0.6. Interface is M-AUDIO - Fast TrackUltra (latest driver) I had a project that seemed fine until I did a Cut/Insert->Cut Selction between Locations. The cut was fin

  • .ai to pdf for large format print

    I am working with Illustrator CS6 and I have to prepare a file that will be printed as a 6 foot x 1.5 foot banner. Actually, it will be several banners; the same design but only the name of the organization will change. I have everything on different

  • My iphone only recieves IMessages from other IPhone users, even if i'm not using imessage at the time.

    So for whatever reason, whenever i text other iphone users, and one of us uses IMessage, my phone will only recieve their texts when i'm connected to wifi, even if we both stop using it. For example, i'll text a friend while temporarily using wifi or

  • Dynamic selection using LDB

    Hi, I want to include two fields of custom infotype in dynamic selection of LDB so that they are handeled automatically by LDB while selection. can anyone tell me how to achieve the same? Thanks -Aleria

  • Printing Defaults on SL 10.6.1 Very annoying problem

    Hi, Ever since I have updated my system to Snow Leopard I have had a problem with printing, basically every time I try to print (safari, sticky notes, preview, etc. not ms word though) the page orientation is set to landscape, i have tried setting a