How to see bcc recipients in sent mail, AppleMail 5.3?

Cannot locate the list of hidden recipients under "sent" mail in Applemail 5.3. When I go to "View," and go to "message," there is no option that will call up the list of "bcc" recipients. How can I check a recipient list if one that I used when sending an email remains hidden?

Wish I could be king. But you described the problem perfectly and I am still but a pawn. All I can say is that I trashed the mail preferences (com.apple.mail.plist) on my Mac Mini, and now my MacBook seems to work right.
Sorry. :>) But that is the truth... The MacBook now has actually sometimes displayed pasted text in its actual, different, font and style as I paste it into a partially composed new mail message.
In other (more rational) words, the problem seems to be tied to pasting only certain types of text. I have not been able yet to pinpoint what. Yes, frustrating indeed. The only work-around has been to re-train my fingers to command-option-shift V, for "paste and match style" (like you, I do not want to always use only plain text). Maybe someone else will eventually weigh in with a real solution. The solution I want is just to be able to consistently see any font variations within my message before I send the email.
The info about the different ppi scales between Windows and Mac is interesting, although not relevant to this particular problem. It does explain the apparent overall size differences I have seen before.

Similar Messages

  • Unable to view my BCC recipients in Sent Mail - please help!

    I used BCC when sending mail to our alumni group (over 1000 members) about a month ago. I need to view the list of recipients in those e-mails from the BCC field - the problem is in my mail app I cannot view the BCC list for some reason in my sent mail folder.
    - using latest version of leopard
    - using IMAP
    - can view to: and cc: but not bcc:
    - tried to add bcc field to sent mail but it was grayed out.
    Please help!

    select that send message and go to view menu->message->raw source. see if the bcc is recorded there. if not that info was not saved and there is no way to get it now.

  • BCC myself but sent mail not showing up in Mail

    I have a BlackBerry. There is a setting where you can BCC an address for mail sent from the BlackBerry so you can have a copy of what you sent on your regular mail client. I've had this configured and it worked flawlessly with other POP3 mail clients I've used. Basically, the sent mail would be retrieved via POP3 as a regular message with the "from" and "to" fields intact. This is fine, and I don't care about being able to see "BCC" recipients. My problem is that Mail seems to be recognizing that the "from" address is the same as the "BCC" address and is getting rid of those messages for me, or ignoring them on the POP server. I thought of a few things, but none seem to be true -- My spam filter (SpamSieve) is not detecting the messages as spam. I also thought that perhaps Mail is doing something nifty like automatically moving the mail into sent folders. However, that's not true either. I also did a few different searches to see if my sent messages had come down somewhere and I was just missing them.
    So now I'm stumped. Is Mail making decisions for me behind the scenes? Any help would be appreciated.
    Intel iMac   Mac OS X (10.4.8)  

    Hi Bmoua,
    What client did she use on the temporary computer? Outlook or outlook app or OWA?
    If she used outlook, it may download the sent messages to the local pst.
    In addition, I also recommend you use message tracking log to check if there are any messages had been sent out when she used temporary computer.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Niko Cheng
    TechNet Community Support

  • How to select multiple recipients in iPad mail

    I have read that I can't create groups, but how to select multiple recipients in iPad mail?
    I was looking for this when setting up for two new people who are going to have the iPad as their only device.. and they do need to email a bunch of people at once..
    I was sending out the 'I have a new email address' BCC for them.
    Thanks.

    You can select multiple contacts by tapping on the + sign in the upper right corner in the To: field when you are typing a new email. Just keep tapping the + sign and your contacts will pop up in a window. Select the contact that you want to add, repeat the process in order to add as many recipients as you want.
    There are other mail apps that let you creat groups and email to those groups.
    https://itunes.apple.com/us/app/group-email!-mail-client-attachments/id380690305 ?l=es&mt=8
    https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    I am sure there are other, but those are two that I know of.

  • How to send multiple Recipients using the mail.jar and activation.jar

    hi!
    could somebody help me. how do i send multiple Recipient using mail.jar. when i would input 2email address in to Recipient
    (example: [email protected], [email protected])
    i get a DEBUG: setDebug: JavaMail version 1.3.2
    but if i send a single email it just works properly.
    heres my code
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public class SendMail
              public SendMail(String to, String from, String subject, String body)
              //public SendMail(String to)
                   String message_recip = to;
                   String message_subject = subject;
                   String message_cc = "";
                   String message_body = body;
                   //The JavaMail session object
                   Session session;
                   //The JavaMail message object
                   Message mesg;
                   // Pass info to the mail server as a Properties, since JavaMail (wisely) allows room for LOTS of properties...
                   Properties props = new Properties( );
                   // LAN must define the local SMTP server as "mailhost" to be able to send mail...
                   //props.put("mail.smtp.host","true");
                   props.put("mail.smtp.host", "mailhost");
                   // Create the Session object
                   session = Session.getDefaultInstance(props, null);
                   session.setDebug(true);
                   try
                        // create a message
                        mesg = new MimeMessage(session);
                        // From Address - this should come from a Properties...
                        mesg.setFrom(new InternetAddress(from));
                        // TO Address
                        InternetAddress toAddress = new InternetAddress(message_recip);
                        mesg.addRecipient(Message.RecipientType.TO, toAddress);
                        // CC Address
                        InternetAddress ccAddress = new InternetAddress(message_cc);
                        mesg.addRecipient(Message.RecipientType.CC, ccAddress);
                        // The Subject
                        mesg.setSubject(message_subject);
                        // Now the message body.
                        mesg.setText(message_body);
                        // XXX I18N: use setText(msgText.getText( ), charset)
                        // Finally, send the message!
                        Transport.send(mesg);
                   }//end of try
                   catch (MessagingException ex)
                        while ((ex = (MessagingException)ex.getNextException( )) != null)
                             ex.printStackTrace( );
                        }//end of while
              }//end of catch
         }//end of SendMail
    public static void main(String[] args)
              //String t = "[email protected], [email protected]"; - this I think causes error
    String t = "[email protected]";
              String f = "[email protected]";
              String s = "Hello World";
              String b = "the quick brown fox jumps over the lazy dog";
              SendMail sm = new SendMail(t,f,s,b);     
         }//end of main
    }//end of class
    could someone please help me im stuck-up with this. thanx!

    i need it ASAP
    i am a beginner in java and jsp
    Need to knw how can I parse the addresss field
    Below
    is the code
    <code>
    package
    public class EMailBean {
    private String smtp,username,password,from,bcc,subject,body,attachments,cc;
         /*setter*/
         public void setSmtp(String str){this.smtp=str;}
         public void setUsername(String str){this.username=str;}
         public void setPassword(String str){this.password=str;}
         public void setFrom(String str){this.from=str;}
         public void setTo(String str){this.to=str;}
         public void setCc(String str){this.cc=str;}
         public void setBcc(String str){this.bcc=str;}
         public void setSubject(String str){this.subject=str;}
         public void setBody(String str){this.body=str;}
         public void setAttachments(String str){this.attachments=str;}
                                  /*getter*/
         public String getSmtp( ){return this.smtp;}
         public String getUsername( ){return this.username;}
         public String getPassword( ){return this.password;}
         public String getFrom( ){return this.from;}
         public String getTo( ){return this.to;}
         public String getCc( ){return this.cc;}     
         public String getBcc( ){return this.bcc;}
         public String getSubject( ){return this.subject;}
         public String getBody( ){return this.body;}
    public String getAttachments( ){return this.attachments;}
    </code>
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(true);
    try {
    MimeMessage msg = new MimeMessage(session);
    msg.setFrom(new InternetAddress(mail.getFrom()));
                                  msg.addRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
                                  msg.addRecipient(Message.RecipientType.TO,new InternetAddress(mail.getTo()));
                             msg.addRecipient(Message.RecipientType.CC, new InternetAddress(mail.getCc()));
                                  msg.addRecipient(Message.RecipientType.CC, new InternetAddress("[email protected]"));
    msg.setSubject(mail.getSubject());
    // Create the message part
    BodyPart messageBodyPart = new MimeBodyPart();
    // Fill the message
    messageBodyPart.setText(mail.getBody());
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    // Part two is attachment
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(mail.getAttachments());
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(source.getName());
    multipart.addBodyPart(messageBodyPart);
    msg.setContent(multipart);
    msg.setSentDate(new Date());
    Transport t = session.getTransport("smtp");
    try {
    t.connect(mail.getUsername(), mail.getPassword());
    t.sendMessage(msg, msg.getAllRecipients());
    } finally {
    t.close();
    result = result + "<FONT SIZE='4' COLOR='blue'><B>Success!</B>"+"<FONT SIZE='4' COLOR='black'> "+"<HR><FONT color='green'><B>Mail was successfully sent to </B></FONT>: "+mail.getTo()+"<BR>";
    if (!("".equals(mail.getCc())))
    result = result +"<FONT color='green'><B>CCed To </B></FONT>: "+mail.getCc()+"<BR>";
    if (!("".equals(mail.getBcc())))
    result = result +"<FONT color='green'><B>BCCed To </B></FONT>: "+mail.getBcc() ;
    result = result+"<BR><HR>";
    } catch (MessagingException mex) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+mex.toString()+"<BR><HR>";
    } catch (Exception e) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+e.toString()+"<BR><HR>";
    e.printStackTrace();
    finally {
    return result;
    }

  • How to include bcc function in thunderbird mail?

    I want to send e-mails to multiple recipients without revealing their e-mail addresses to each other. How can I do that with Thunderbird mail?

    Click on the button beside the address field that says TO and select BCC instead.

  • I am unable to see bcc addresses in sent message

    bcc addresses do not show in Mail sent messages.  Recommended solutions from other posts have not solved the issue.

    I have the same problem. It was working before. I sent a message with addresses in BCC in November, and I can still see those addresses. I sent one this week and I cannot see any.
    I sent one email without any address in the TO just a bucnh of addresses in BCC. I can see only one of the addresses in the BCC, and it is not even the first one in the list.
    After I updated to Mail 7.2 I tested it again. The previous emails were sent using a gmail account (IMAP). I tested with the same gmail account and another non-gmail IMAP account. Now I can see the BCC addresses in the gmail but not the other.
    It seem sto be erratic and frustrating.

  • Viewing bcc names in sent mail

    When I send an email with bcc's, sometimes my sent-mail shows the names and sometimes it does not. Why? How can I get it to show the names all the time? It doesn't seem to be dependent on the number of bcc's either. Thanks. I do have more than one email address but this issue seems independent of which address I'm using.

    No, I guess you should check the duplicate post.

  • Mail to multiple recipients in sent mail index

    When I send mail to multiple recipients (all in the "To:" field), for some reason when I view the Sent index, only the first recipient shows up. (If I open the message, I see all recipients listed.)
    In Mail version 1, which I had been running on a prevoius machine with 10.2.8, all the recipients would appear in the sent mail index.
    For example, let's say I email Joe, Tom, Gary. If I go to the Sent mailbox, I only see "Joe" in the "To" column. Before, I'd see "Joe, Tom, Gary."
    Any way to change a setting to restore this? It makes it easier to see to whom I sent what.

    use string tokenizer to tokenize the string and then use this in ur smtp coding
    message.addRecipients(Message.RecipientType.TO, to)
    where 'message' is object of MimeMessage
    and 'to' is array of Address
    ex:-
    Address[] to = new Address[count];
    Earlier u must be using message.addRecipient(Message.RecipientType.TO, to)
    where to is object of Address.
    Sample code:-
    suppose String posted from ur form is :-
    to = "[email protected],[email protected],[email protected]"
    StringTokenizer toAdd = new StringTokenizer(to,",");
    Address[] address=new Address[toAdd.countTokens()];     
    int j=0;
    while(toAdd.hasMoreTokens()){
    address[j]=(new InternetAddress(toAdd.nextToken()));
    j++;
    }

  • How to view recipient name in Sent mail folder

    My Sent mail box on my hard drive shows my name rather than the recipient name.  How do I change the settings to view the recipient name rather than mine (which is on all of them, of course)?

    Hi Prashant
    It is possible with a parameter change in SOST:
    SOST_REC_CHANGE = X
    from:
    http://sapnw-professional.blogspot.co.uk/2013/07/sost-change-recipient-mail-address.html
    Regards
    Mike

  • Can't see message contents in "sent" mail folder

    I had to rebuild my Apple Mail system two weeks ago. Now, if I need to look at a "sent" message from a point further back than two weeks ago, I can see the message entry, the subject, the addressee, but not the actual content of the message. I followed some advice elsewhere in this forum, but I think it made matters worse-I found two "sent" folders, under two different incoming mail identities, both mine, in my home Library Mail folder; I combined them, by physically dragging the contents from one to the other. Didn't work. Now I can't access any sent mail-I get the front details, but no contents. So now, if I have to, I can visit my Home folder Library to dig up old sent mail(it's all there), but I can't see anything from the Mail application. Any advice?

    No, my question still hasn't been answered, but I can add information. As it is now, if I open my "sent" mail folder, I can see a list of emails, with subjects, date sent, etc., but if I click on one of them, if the email is older than a certain date I won't see a message. The lower, message, window is blank.
    The new information is this: when I posted my original question, above, on Nov. 9, the blank-message problem wasn't an issue for messages sent in the preceding week; only for messages sent before that. Now, on Nov. 13, I can read messages back to Nov. 9, but not before that. The problem is advancing a day at a time. I can only read messages sent within the last four or five days; not before.

  • How to see GUID of new user mail box

    Hi Member
    How to see GUID of user mailbox on the web ECP ?
    Now when i need to GUID must run Power shell as below
    $username = "username"
    $guid = (Get-Mailbox $username).ExchangeGUID
    $upn = (Get-User $username).UserPrincipalName
    $upnsuffix = $upn.Split("@")[1]
    $ServerName = "$guid@$upnsuffix"
    write-host $ServerName

    And that is the only way. Its not viewable in EAC.
    Twitter!:
    Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.
    Thnak you

  • Unable to see BCC list in Sent Item

    I have Outlook 2013 in Windows 7 Pro. I have sent a number of messages addressed to multiple addressees in the BCC field. However, when I open the Sent email, I am unable to see the BCC field and the addressees. I know they have received the message. Double
    clicking the message doesn't help. How can I see the list of addressees?

    Hi,
    Do you have other accounts configured in Outlook? If yes, do they display the Bcc field?
    As Diane mentioned in the earlier post, please add Bcc column in the VIEW and check if the Bcc information is stored by your account:
    Open the Sent Items folder, go to VIEW tab -> Current View -> Change View -> Select "Preview".
    Then right click on the top bar of the email list, select "Field Chooser", choose "Address fields" in the dropbox, and drag "Bcc" to the top bar.
    If the Bcc information was actually stored, you will find the "Bcc" information in the column. If you don't even find the Bcc information under that column, it seems that your account type doesn't store the Bcc information, it happens with some
    account types.
    Regards,
    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

  • How to see via command line blocked mails

    Im having a problem...i have a C100 Ironport appliance and i want to know via command line, how to grep and see mails that never went delivered.
    For example...i know that someone, like [email protected] send to my exchange server an email...but in exchange never entered. So i assume that it was filtered by Ironport.
    I go to the command line, use grep and 13 and search for [email protected] and i see something like this
    Wed Apr 18 14:17:54 2007 Info: MID 3977209 ICID 8813638 From: <pedro>
    Wed Apr 18 14:18:44 2007 Info: MID 3977209 ready 3019672 bytes from <pedro>
    I see that 2 mails came from pedro....so i want to see what happened to them...they were bounced? rejected? Delivered?
    I dont have any email in the local quarantine... and i want to know how to track what happened to those emails that never entered to my exchange server.
    Is there any command?
    Than you!

    Wanted to add that you can shortcut the "grep" process by putting everything on one line.
    grep -i "Mid 3977209" mail_logs
    grep -i "ICID 8813638" mail_logs
    grep -i "From: " mail_logs
    basically
    grep -i "pattern" mail_logs
    -i ===> ignore case
    Im having a problem...i have a C100 Ironport appliance and i want to know via command line, how to grep and see mails that never went delivered.
    For example...i know that someone, like [email protected] send to my exchange server an email...but in exchange never entered. So i assume that it was filtered by Ironport.
    I go to the command line, use grep and 13 and search for [email protected] and i see something like this
    Wed Apr 18 14:17:54 2007 Info: MID 3977209 ICID 8813638 From:
    Wed Apr 18 14:18:44 2007 Info: MID 3977209 ready 3019672 bytes from
    I see that 2 mails came from pedro....so i want to see what happened to them...they were bounced? rejected? Delivered?
    I dont have any email in the local quarantine... and i want to know how to track what happened to those emails that never entered to my exchange server.
    Is there any command?
    Than you!

  • How do I make my iPhone 'sent' mail folder sync exactly with my iMac 'sent' folder?

    I've got an email set up through IMAP on my iPhone and on my mac and I've been using it for years but I've realized all of my folders sync exactly with the exception of my "sent" mailbox. For some reason, when I send something on my comp, it doesn't show in the sent folder on my phone? Does anyone have a clue as to what this could be and how I get them to sync like the rest?

    Because everything is on the same home network, all are wireless except the mini, I'd rather not do a cloud base setup. It doesn't make sence to upload then download if all are on the same network. Maybe I'm asking how to setup a secure home network.

Maybe you are looking for