Problems showing all recipients in received email

Found the problem described and unsolved in a archived post, still have the same problem now:
When a received email contains multiple recipients (say 15), then there are only a few shown, followed by a "x more..." link. Clicking on that link has no effect. Currently the only way for me to see all recipients is to show the raw source of the message.
Does anybody also have that problem or know a solution? A tricky thing to search for.
Thanks!

Hi Joel
Ooops - I had to edit this message...
Welcome to the discussions!
Here it works perfectly on more than 20 different systems.
Do you have other problems with your mouse?
--greg
Message was edited by: madconqueror

Similar Messages

  • TS3276 I am connected to internet...all other devices receive emails except my main computer.  Any ideas why?

    I am connected to internet...all other devices receive emails (ipad, iphone).  However, my main computer will not receive emails anymore.  Why?

    Ok.  So this is interesting.
    Previously, I had checked my storage with Yahoo Mail Plus and I had tons of available space.
    Similar to this post, I sent an email to Yahoo Mail customer service outlining my problem.  Did not receive a response.
    Despite my Yahoo Mail Plus account showing plenty of available space, I decided to clean-up (delete emails and delete the resulting Trash) the various folders in the Yahoo Mail Plus account.
    While deleting emails from the Sent folder and Spam folder in Yahoo Mail Plus, my Mac Mail started uploading my inbox from Yahoo Mail Plus.
    I don't know if someone at Yahoo Mail "fixed something" in response to my customer service email or whether Yahoo Mail wasn't allowing Mac Mail to upload my Inbox due to some "folder sublimit" issue that wasn't readily apparent (which was "resolved" when I started cleaning up the Yahoo Mail folders).
    I know it wasn't the overall storage that shows on your Yahoo Mail account because I checked that as one of the first things. 
    Anyway, I'm back up and running.  Thanks for responding and working with me to try to figure this out. 

  • Recipients not receiving emails even though internet provider shows post in it's esnd folder. Started happening with no changes in configuratuin. Thanks

    Sending emails from my laptop using Thunderbird I get the usual "connecting to...., sending to...,message sent" But recipients do not receive post even though my internet provider's sent folder contains the posts. Cox is my email provider and I can send posts from their WebMail site.
    There were no changes in configuration.
    I should note that I was using a "free" WiFi in Nicaragua.
    Also, I receive emails just fine.
    Cox says it's my email client but I don't see how it could be you guys isince Cox had had to receive the posts in order to put them in the sent folder.
    Thanks
    [email protected]

    have you tried mail to multiple domains or all say cox.net. I have a feeling your email might have got a bad reputation in deepest darkest Africa.

  • How can I list all recipients of an email I have sent?

    Hi there,
    I sent an email to 16 people today using Mac Mail v 7.1 (1827) - 1 group of 15 people and another person. I later found out that the single email may have been wrong and I wanted to check it... i.e. did I put gmail.com instead of hotmail.com?
    When I clicked on the message in the sent folder, the email came up with the display showing the email address I used to send it (on the top left) and on the top right, the timestamp of when it was sent and just below that, a link with "Hide details".
    Clicking on Hide Details DOESN'T actually hide the information !!! it expands with a list of email addresses which in this case was 4 email addresses and a link with 12 more people. Clicking on "12 more" people reverts back to my email address and timestamp.
    So in effect, I can't display the email addresses I sent to and the logic of "Hide Details" seems to be working in reverse.
    The only way I can check to see to whom I sent the email, is to reply to all recipients, view the TO/CC/BCC fields, and then cancel. But surely, clicking on the "12 more" or however more number of people, should display all the email addresses or am I missing something really obvious?
    Thanks,
    Maz

    Hi Wayne,
    Thanks for your reply.
    I tried your suggestion and it still didn't work. I've just done a test email and I've attached the 2 images.
    The first image lists a few of the email recipients and N people more and when I click on "N more", I get the second image.
    So it's either one or the other I get and no full list of email recipients.
    Thanks,
    Maz

  • Spry Contact Form doesn't show all the information on email

    Hi there,
    So I have created a contact form with the spry text fields.
    The text fields are:
    Name
    Email
    Message
    Onced tested the email shows:
    Name     : [email protected]
    Email     :  (blank)
    Message: (blank)
    So The two issues is that is shows the email shows under name and the email and message sections dont show any infomation at all.
    Link is here
    Thanks in advance
    Ash

    The best way is to have no separate action page and lump the whole lot into one document.
    The following is an example of this
    <?php
    if(isset($_POST['Email'])) {
        // EDIT THE 2 LINES BELOW AS REQUIRED
        $email_to = "[email protected]";
        $email_subject = "Your email subject line";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['Name']) ||
            !isset($_POST['Email']) ||
            !isset($_POST['message'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');     
        $name = $_POST['Name']; // required
        $email_from = $_POST['Email']; // required
        $comments = $_POST['message']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$name)) {
        $error_message .= 'The Name you entered does not appear to be valid.<br />';
      if(strlen($comments) < 2) {
        $error_message .= 'The Comments you entered do not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "Name: ".clean_string($name)."\n";
        $email_message .= "Email: ".clean_string($email_from)."\n";
        $email_message .= "Comments: ".clean_string($comments)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers);
    ?>
    <!-- include your own success html here -->
    <p class="message">Thank you for contacting us. We will be in touch with you very soon.</p>
    <?php
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextarea.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextarea.css" rel="stylesheet" type="text/css" />
    <style>
    .message {
        font-size: 1.4em;
        color: #F00;
    </style>
    </head>
    <body>
    <h1>Contact Us</h1>
    <p>Please use any of the below methods to contact us for any enquiries or questions you may have</p>
    <p>Email : <a href="mailto:[email protected]">[email protected]</a></p>
    <form id="formmail" name="formmail" method="post" action="">
      <p id="nametextfield2">
        <label for="Name"></label>
        <input type="text" name="Name" id="Name" />
        <span class="textfieldRequiredMsg">A value is required.</span>
        <span class="textfieldMinCharsMsg">Minimum number of characters not met.</span>
        <span class="textfieldMaxCharsMsg">Exceeded maximum number of characters.</span>
      </p>
      <p id="emailtextfield3">
        <label for="Email"></label>
        <input type="text" name="Email" id="Email" />
        <br />
        <span class="textfieldRequiredMsg">A value is required.</span>
        <span class="textfieldInvalidFormatMsg">Invalid format.</span>
      </p>
      <p id="messagetextarea1">
        <label for="message"></label>
        <textarea name="message" id="message" cols="45" rows="5"></textarea>
        <span id="countmessagetextarea1"> </span>
        <span class="textareaRequiredMsg">A value is required.</span>
        <span class="textareaMinCharsMsg">Minimum number of characters not met.</span>
        <span class="textareaMaxCharsMsg">Exceeded maximum number of characters.</span>
      </p>
      <p>
        <input type="submit" name="Submit" id="Submit" value="Submit" />
      </p>
    </form>
    <script type="text/javascript">
    var sprytextfield2 = new Spry.Widget.ValidationTextField("nametextfield2", "none", {hint:"Name", minChars:1, maxChars:50, validateOn:["blur"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("emailtextfield3", "email", {validateOn:["blur"], hint:"Email"});
    var sprytextarea1 = new Spry.Widget.ValidationTextarea("messagetextarea1", {minChars:1, maxChars:400, validateOn:["blur"], counterType:"chars_remaining", counterId:"countmessagetextarea1", hint:"Message"});
    </script>
    </body>
    </html>
    Down the track you will be able to hide the form once it has been submitted.
    Gramps

  • MORE PROBLEMS -NOW CANNOT SEND OR RECEIVE EMAILS A...

    Not been able to send or receive emails the whole day and still cant -11pm now !
    Had remote assistance helping from Newcastle earlier as when trying to receive or send it keeps asking for password -then it went to BT help and it told me it was the wrong password !?? Never touched it since it was set up -no,idea why it would be wrong ????
    I then rang up for help -the guy took over my computer and advised me to change my password -done that -no joy . Topld me to wait and he would ring back in 20 mins-rang back in 40 mins and still not working -tried everything -still not working.
    Then he said the servers were down and no idea when it would be working !!!
    Still cannot send or receive emails and its now 11pm !!!
    I had emails i was waiting for and not received .
    What do we actually pay for and what do we actually get ???????
    More hassle every day thats all.
    Had more problems with BT in the last few months since joining than Tiscali -and that really is scraping the bottom !
    Just checked the fault reports -guess what -NOTHING FOR THIS AREA -ALL FAULTS RESOLVED !
    NOT MINE THOUGH !!!!
     I HAVE HAD ENOUGH -I HAVE HAD TO CHANGE MY PASSWORD AS COULDNT RECEIVE EMAILS OR SEND THEM - CHANGED IT AND STILL CANNOT SEND OR RECEIVE THEM -ABSOLUTELY WELL AND TRULY P----ED OFF !

    gb1957 wrote:
    Not been able to send or receive emails the whole day and still cant -11pm now !
    Had remote assistance helping from Newcastle earlier as when trying to receive or send it keeps asking for password -then it went to BT help and it told me it was the wrong password !?? Never touched it since it was set up -no,idea why it would be wrong ????
    I then rang up for help -the guy took over my computer and advised me to change my password -done that -no joy . Topld me to wait and he would ring back in 20 mins-rang back in 40 mins and still not working -tried everything -still not working.
    Then he said the servers were down and no idea when it would be working !!!
    Still cannot send or receive emails and its now 11pm !!!
    I had emails i was waiting for and not received .
    What do we actually pay for and what do we actually get ???????
    More hassle every day thats all.
    Had more problems with BT in the last few months since joining than Tiscali -and that really is scraping the bottom !
    Just checked the fault reports -guess what -NOTHING FOR THIS AREA -ALL FAULTS RESOLVED !
    NOT MINE THOUGH !!!!
     I HAVE HAD ENOUGH -I HAVE HAD TO CHANGE MY PASSWORD AS COULDNT RECEIVE EMAILS OR SEND THEM - CHANGED IT AND STILL CANNOT SEND OR RECEIVE THEM -ABSOLUTELY WELL AND TRULY P----ED OFF !
    Hi.
    This sounds like one of the fleeting account problems that can happen from time to time, changing the password doesn't do anything and will not help.
    Unfortunately it can last for a few days, so best to keep trying every few hours.
    There are probaby a few reasons for this, including local anti-virus or other security programs interferring. Sometimes a router power cycle can help, by getting a new IP address in case the one you've curently got has gone stale.
    Are you able to login via webmail ? (or was this actually via webmail rather than something like Outlook or Thunderbird ?).
    If the servers were down, then it would affect millions of people, and there would be masses of reports.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Script to extract names and email addresses of all recipients of an email

    Hi,
    I have found some scripts which extract email addresses from the content of messages in Mail, but I am looking for something rather different, and wonder if such a script exists, or if someone can help me build one.  I would like to create a tab delimited text file of the first name, last name and email address of all recipients of a given message in Mail.  Most email addresses will be in the format John Doe <[email protected]>.
    Thanks,
    Nick

    Hi,
    nick_harambee wrote:
    I have one outstanding issue, which wasn't included in the original question.  Sometimes email addresses are included in the Name of the recipient, i.e. instead of 'John Doe', it reads 'John Doe ([email protected])'.  Could you script be adapted to delete any block of text (i.e. space delimited) that includes the @ symbol, so that 'John Doe ([email protected])' would return:
    John<tab>Doe<tab>[email protected]
    Use this handler:
    on splitName(t)
        if "@" is in t then -- to remove the address after the name
            set n to -3
        else
            set n to -2 -- normal name
        end if
        set tid to text item delimiters
        set text item delimiters to space
        set l to text items of t
        if (count l) = 1 then -- no space 
            set r to tab & t & tab -- last name only 
        else
            tell l to set r to "" & (items 1 thru n) & tab & (item (n + 1)) & tab
        end if
        set text item delimiters to tid
        return r
    end splitName

  • Ipad mini problem showing all videos

    I am using an Ipad mini and upgraded to the new iOS7 a few weeks back.  When I did that I noticed among other things that all of my iCloud videos were showing up in my video app allowing me to either download or watch directly from that app (rather than going to the iTunes Store apps Purchased section and getting it there).  I loved this new feature but for unrelated reasons I had to restore my Ipad and it will no longer show those items.  I went to the "Settings -> Videos -> Show all videos" option and it is in the "on" position but still wont show the movies. 
    I have tried re-syncing with computer and hard restarting the Ipad to no avail.  Any help would be appreciated.

    Hello TallSknyWhtGuy,
    I'd suggest checking to make sure that the appropriate iTunes Store account is signed in on the device.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    Cheers,
    Allen

  • Missing Attachments and recipients on received email

    I received an email on which I can't see the email, nor the recipients.
    I've checked the RAW Source and all the headers are missings, and some of the multiparts. It seems the mail has been truncated (the first part is missing, including headers and two attachs.
    The problem, is that when I see the same email with my iphone, all is ok. recipients and email.
    My mail accoun is an imap account from my company. (not gmail).
    Any ideas?
    It seem like a HUGE issue, can't believe they let this kind on issue on Apple.

    First of all, im happy i was able to help in someway. u should tick this issue resolved since u dont have any more problems
    there are many factors as to why this could have happened. Maybe there was an interruption with your internet so the mail was not downloaded properly and became corrupted,Mail app issue,etc etc.
    We can certainly look at the logs to identify which caused it but honestly what's important now is u have everything up and running again

  • Problem with some user accounts receiving email

    We are running Exchange 2003 and having our end users get their email via Outlook Web Access on their Blackberry devices, and are having a problem with just some users. When we go into BIS, we can setup their account just fine, but they never receive any e-mails. They can send e-mails fine also. We have done the following tests:
    1. I have setup my AT&T Curve to check my e-mail, works fine.
    2. I have three users I'm currently using as my "test group" since this problem began. Two using Verizon Storms, and one using a Verizon Bold. All three can send e-mail fine, one of the storm users can check e-mail, but not the other two.
    3. I have setup these accounts on my (known working from test 1) Blackberry Curve, and get the same results. I cannot receive e-mail on either of those two accounts.
    I don't see any errors in any logs (unless I am looking in the wrong place). I've even gone throught adsiedit and compared the msexch* settings and they all seem comperable. Any ideas as to what could be causing this?

    On the devices browser options, are these settings all identical?
    support HTML tables : Yes/Ns
    style sheets media type : handheld/Screen
    emulation mode : Blackberry/ Openwave (WAP/Openwave gateway/MSIE/MS PocketIE/Netscape)Content mode : WML & HTML / HTML only / WML only
    If someone helped you give them kudos. Research all info!

  • Recipients not receiving email

    I sent several emails from my new mac book and the recipients have not received them. It says that my server has timed out on some attempts to send emails. on other attempts, nothing is said, they just don't get them. Any idea on what could be happening? Why aren't people getting some of my emails?

    Go to these documents:
    http://docs.info.apple.com/article.html?artnum=166745
    http://docs.info.apple.com/article.html?artnum=75124
    Make sure everything is in order and that your . mac smtp server is correct. It could just be that the server was down when you sent the emails.
    Also to double check things, use the web version of your .mac account and see what happens there. Send yourself an email to test. That will tell you if it's the .mac account or your settings in mail.
    By your handle I am assuming you are talking about a .mac account
    Intel Dual Mac-Mini, G4 Powerbook, G4-933   Mac OS X (10.4.6)  

  • I've sent a group msg through messages but after a whole day it still says "outgoing". How do I know when all recipients have received the msg?

    I'm still not sure how many recipients received the group msg as it still says "outgoing".

    ++

  • How to send a single email to all recipients at one time

    Hi,
    With JavaMail, is there any way to send an email to several recipients at once time
    instead of calling Transport.send() one by one? You may state why not use
    address like "[email protected],[email protected],[email protected]".
    Because I want to have a single recipient address appeared on the "Address To"
    field on email instead of showing all recipients addresses on the "Address To" field.
    Thanks for your attention in advance,
    Raymond

    If you don't want all the recipients to see each other's addresses (and that's often what you do want), put that list into the BCC address and not the To address.

  • Random delay in receiving emails in Apple Mail

    Hi Everyone:
    I've searched online about this problem but I didn't find anything helpful for my situation. I'm hoping someone here can help me. The problem I'm having is that there is a delay in receiving emails in Apple Mail—and it's happening in random. Here's a list of things that pertain to the problem:
    1. Delays in receiving emails vary from 1 hour to 1 day. The delayed emails are actually sitting on the incoming email server and can be seen via webmail using a browser. So, to me, apparently this is a problem with Apple Mail not downloading the new email where it's clearly received on the server.
    2. The same delayed email, when resent by the sender a few times, randomly downloaded by Apple Mail in no particular order. One of the resent emails arrived with no delay while others are delayed again. This is one same email from one same sender.
    3. This problem happens on Macs running Snow Leopard (OS X 10.6.x), Lion (10.7.x), and Mountain Lion (OS X 10.8.x). Different Macs, different email user accounts, same domain name. But, some other Macs with other user accounts on the same domain name have never had this problem ever.
    4. Besides this problem of delayed emails, I've also noticed another problem that seems to tag along: read emails or trashed emails will show up in the Inbox as unread/new emails the next day.
    The steps I've taken so far:
    1. Talked and had the email server provider checked the server and the delayed emails with long headers, and they found nothing wrong with the email server functions. I concurred as I can see the emails not delayed if I use the webmail/browser.
    2. Rebuilt the email account in Apple Mail, reset keychain to the email account, clear cache, fixed permissions on the Mac with the problem.
    And the problem persists...

    I am having a similiar problem with emails sent to my 10.6 xserve. 
    I have noticed most, if not all, of the problems are connected to email coming from google servers i.e. [email protected]  As I also administer a google business account I contacted Google and when they looked into it indicated this sometime has something to do with google's 'Undo Send" function.  However in my case google is indicating it is an issue on my server with no further explination. 

  • Can't receive email .MAC, IMAP or POP

    My receive email stopped working, all of a sudden. I have checked all the setup parameters, and they are right. I even tried to create duplicate accounts, one for .MAC, one for IMAP, and one for POP. They all fail to receive email from my @mac.com email account. Web mail works fine, and I can send email to myself from my mac.com email, or my sbcglobal.net email, but it only shows up in web mail not in the mail client.
    Befuddled

    "What does "stopped working" mean? "
    Thank you for the reply, stopped working means tht I can't receive email. Turns out, that this morning, after 24 hours, it started working agiain. I tried everything yesterday to receive email, and nothing would work, including deleting the account on the client and reentering it. Today, I tried entering it again, and wonderful of wonderfuls, it works fine. My only guess, is tht whatever server my mail is on, wouldn't connect.
    Oh, well, thanks,
    Tom

Maybe you are looking for