Multiple page form to email with sessions doesn't send mail

I am creating a multiple page form where a user can apply for finance. I am trying to use session to keep the user input values and then the last page sent the application by email.
My problem is the last step where it doen't send the email. I'm not sure if it the session I'm using is wrong because a simple form without sessions works fine.
here are the forms
First page is the input for with variables
<form action="Finance_form_proposal_Address.php" method="post" >
  <span id="sprycheckbox1">
  <input  name="Disclaimer" type="checkbox" value="yes">
  <span class="checkboxRequiredMsg">Please confirm that you have read and understood the Terms and Conditions.</span></span>
  <div id="F1"><table width="100%" border="1" align="center" cellpadding="3" cellspacing="2">
  <tr>
    <td align="right" bgcolor="#F7E4F8" ><strong>Title:</strong></td>
    <td align="left" bgcolor="#F7E4F8"><select name="Title">
          <option value="Mr">Mr</option>
          <option value="Mrs">Mrs</option>
          <option value="Miss">Miss</option>
          <option value="Ms">Ms</option>
          <option value="Dr">Dr</option>
          <option value="Rev">Rev</option>
        </select></td>
etc..
</form>
The second form:
Getting values and input new form
<?php session_start();
$_SESSION['Disclaimer'] = $_POST['Disclaimer'];
$_SESSION['Title'] = $_POST['Title'];
$_SESSION['Forname'] = $_POST['Forname'];
$_SESSION['Middle_name'] = $_POST['Middle_name'];
$_SESSION['Surname'] = $_POST['Surname'];
$_SESSION['email'] = $_POST['email'];
$_SESSION['DOB'] = $_POST['DOB'];
$_SESSION['DOB2'] = $_POST['DOB2'];
$_SESSION['DOB3'] = $_POST['DOB3'];
$_SESSION['Gender'] = $_POST['Gender'];
$_SESSION['checkboxGroup1'] = $_POST['checkboxGroup1'];
$_SESSION['checkboxGroup2'] = $_POST['checkboxGroup2'];
$_SESSION['home_phone'] = $_POST['home_phone'];
$_SESSION['mobil'] = $_POST['mobil'];
$_SESSION['marital_status'] = $_POST['marital_status'];
$_SESSION['Occupancy'] = $_POST['Occupancy'];
$_SESSION['Dependants'] = $_POST['Dependants'];
?>
Form on second page
<form action="Finance_form_proposal_Bank_Details_employment.php" method="post"> <input  name="Disclaimer" type="checkbox" value="yes">
    <div id="F1"><table width="100%" border="1" align="center" cellpadding="3" cellspacing="2">
  <tr>
    <td align="right" bgcolor="#F7E4F8" ><strong>Correspondence Address:</strong></td>
    <td align="left" bgcolor="#F7E4F8"><input name="Correspondence" type="checkbox" id="Correspondence" value="yes" checked="CHECKED">
      <label for="Correspondence"></label></td>
  </tr>
  <tr>
    <td bgcolor="#F7E4F8"><strong>Street:</strong></td>
    <td bgcolor="#F7E4F8"><input name="Street" type="text"></td>
  </tr>
  <tr>
    <td bgcolor="#F7E4F8"><strong>District:</strong></td>
    <td bgcolor="#F7E4F8"><input name="District" type="text"></td>
  </tr>
  <tr>
    <td bgcolor="#F7E4F8"><strong>Town:</strong></td>
    <td bgcolor="#F7E4F8"><input name="Town" type="text"></td>
  </tr>
etc ..
</form
Third page
Getting values
session_start();
$_SESSION['Correspondence'] = $_POST['Correspondence'];
$_SESSION['Street'] = $_POST['Street'];
$_SESSION['District'] = $_POST['District'];
$_SESSION['Town'] = $_POST['Town'];
$_SESSION['County'] = $_POST['County'];
$_SESSION['Country'] = $_POST['Country'];
$_SESSION['Years'] = $_POST['Years'];
$_SESSION['Months'] = $_POST['Months'];
$_SESSION['Street2'] = $_POST['Street2'];
$_SESSION['District2'] = $_POST['District2'];
$_SESSION['Town2'] = $_POST['Town2'];
$_SESSION['County2'] = $_POST['County2'];
$_SESSION['Country2'] = $_POST['Country2'];
$_SESSION['Years2'] = $_POST['Years2'];
$_SESSION['Months2'] = $_POST['Months2'];
$_SESSION['Street3'] = $_POST['Street3'];
$_SESSION['District3'] = $_POST['District3'];
$_SESSION['Town3'] = $_POST['Town3'];
$_SESSION['County3'] = $_POST['County3'];
$_SESSION['Country3'] = $_POST['Country3'];
$_SESSION['Years3'] = $_POST['Years3'];
$_SESSION['Months3'] = $_POST['Months3'];
Then there is a another form to fill in , wont show that as it is in principle the same.
This is the last page that should sent the data to email:
<?php
session_start();
/* Subject mail variables */
$emailsubject = 'Finance application from PandKshop';
$webmaster = '[email protected]';
/* Gathering Data */
$goods = $_POST['goods'];
$amount = $_POST['amount'];
$Total_Cash = $_POST['Total_Cash'];
$Deposit = $_POST['Deposit'];
$Balance = $_POST['Balance'];
$Payments = $_POST['Payments'];
$Diclaimer = $_SESSION['Disclaimer'];
$Title = $_SESSION['Title'];
$Forname = $_SESSION['Forname'];
$Middle_name = $_SESSION['Middle_name'];
$Surname = $_SESSION['Surname'];
$email = $_SESSION['email'];
$DOB = $_SESSION['DOB'];
$DOB2 = $_SESSION['DOB2'];
$DOB3 = $_SESSION['DOB3'];
$Gender =  $_SESSION['Gender'];
$CheckboxGroup1 = $_SESSION['CheckboxGroup1'];
$CheckboxGroup2 = $_SESSION['CheckboxGroup2'];
$home_phone = $_SESSION['home_phone'];
$mobil_phone = $_SESSION['mobil_phone'];
$marital_status = $_SESSION['marital_status'];
$Occupancy = $_SESSION['Occupancy'];
$Dependants = $_SESSION['Dependants'];
$Correspondence = $_SESSION['Correnspondence'];
$Street = $_SESSION['Street'];
$District = $_SESSION['District'];
$Town = $_SESSION['Town'];
$County = $_SESSION['County'];
$Country = $_SESSION['Country'];
$Years = $_SESSION['Years'];
$Months = $_SESSION['Months'];
$Street2 = $_SESSION['Street2'];
$District2 = $_SESSION['District2'];
$Town2 = $_SESSION['Town2'];
$County2 = $_SESSION['County2'];
$Country2 = $_SESSION['Country2'];
$Years2 = $_SESSION['Years2'];
$Months2 = $_SESSION['Months2'];
$Street3 = $_SESSION['Street3'];
$District3 = $_SESSION['District3'];
$Town3 = $_SESSION['Town3'];
$County3 = $_SESSION['County3'];
$Country3 = $_SESSION['Country3'];
$Years3 = $_SESSION['Years3'];
$Months3 = $_SESSION['Months3'];
$Sort_Code          = $_SESSION['Sort_Code'];
$Account = $_SESSION['Account'];
$Years_with_Bank = $_SESSION['Years_with_Bank'];
$Months_with_Bank = $_SESSION['Months_with_Bank'];
$CreditCard = $_SESSION['CreditCard'];
$ChequeCard = $_SESSION['ChequeCard'];
$Employment = $_SESSION['Employment'];
$income = $_SESSION['Income'];
$Income2 = $_SESSION['Income2'];
$Occupation = $_SESSION['Occupation'];
          $Body = <<<EOD
<br><hr><br>
Goods: $goods <br>
Amount: $amount <br>
Total Cash: $Total_Cash <br>
Deposit: $Deposit <br>
Balance: $Balance
Nine Monthly Payments of : £ $Payments
Title: $Title <br>
Forname: $Forname <br>
Middle Name: $Middle_name <br>
Surname : $Surname <br>
Email: $email <br>
DOB: $DOB/$DOB2/$DOB3 <br>
Gender: $Gender <br>
Home_phone: $CheckboxGroup1 Mobile phone: $CheckboxGroup2 <br>
Home Phone number: $home_phone <br>
Mobile Phone number: $mobil_phone <br>
Marital_Status: $marital_status <br>
Occupancy : $Occupancy <br>
Dependants: $Dependants <br>
Correspondence Address: $Correspondence <br>
Street: $Street <br>
District: $District <br>
Town: $Town <br>
County: $County <br>
Country: $Country
Years: $Years
Months: $Months
Street2: $Street <br>
District2: $District2 <br>
Town2: $Town2 <br>
County2: $County2 <br>
Country2: $Country2
Years2: $Years2
Months2: $Months2
Street3: $Street3 <br>
District3: $District3 <br>
Town3: $Town3 <br>
County3: $County3 <br>
Country3: $Country3 <br>
Years3: $Years3 <br>
Months3: $Months3 <br>
Sort Code: $Sort_Code <br>
Account: $Account <br>
Years with the Bank: $Years_with_Bank <br>
Months with the Bank: $Months_with_Bank <br>
CreditCards: $CreditCard <br>
Cheque Card: $ChequeCard <br>
Employment: $Employment <br>
Income: £$income <br>
Income Frequency: $Income2 <br>
Occupation: $Occupation <br>
EOD;
          $headers = "From: $email\r\n";
          $headers .= "content-type: text/html\r\n";
          $succes = mail($webmaster, $emailsubject, $Body, $headers);
session_destroy();
/* Results rendered as HTML */
$theResults = <<<EOD
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
      <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
      <title>Thank you! The Piano and Keyboard Shop Online</title>
      <link rel="STYLESHEET" type="text/css" href="contact.css">
      <link href="The Piano and Keyboard Shop.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2>Thanks for your application!<br />
We endavour to get back to you as soon as possible with application results</h2>
Please contact us on 0116 2541053 if you have any questions regarding your finance application
Return to <a href="../index_main.php">Home Page</a>
<div id="advertising">
    <div id="add_left"><a href="Contact.php">Contact us</a><br>
      <a href="About.php">About us</a><br>
      <a href="Finance.php">Finance</a><br>
</div>
    <div id="adds_middle"><a href="term-conditions.php">Terms and Conditions</a><br>
      <a href="Privacy-Policy.php">Privacy Conditions</a><br>
      <a href="FAQ.php">FAQ</a><br>
</div>
    <div id="adds_right"><a href="http://www.youtube.com/user/KeysoundWebsite">Follow us on YouTube</a><br>
      <a href="https://twitter.com/KeysoundUK">Follow us on Twitter</a><br>
      <a href="https://www.facebook.com/pages/Keysound/163590297024385">Follow us on Face book</a><br>
</div>
  </div>
  <div id="advertising"> <div id="copy"><img src="files/Images/copyright.gif" width="19" height="22">
</div> </div>
</body>
</html>
EOD;
echo "$theResults";
?>
Is there something wrong with my sessions or just something in the code?

Standard Apple Mail. I'm running Yosemite 10.10.1, and I'm amazed to see that About Mail says it's Mail Version 8.1 (1993), copyright 1995-2014 Apple Inc. 
Interesting thought, do you think that it doesn't like to work with itself?  Actually, I'm fairly sure I've had the problem inside of other apps but I should document that.  I'll keep notes to see where this happens. 

Similar Messages

  • HT204075 I am not receiving mail to one of my email accounts. I can send mail from this account and all other accounts seem to be working.

    I am not receiving mail to one of my email accounts. I can send mail from this account and all other accounts seem to be working.

    Is this work email account on a BES server?
    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

  • Submit a form through email with multiple signatures

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle, with javascript and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?
    edit: Something I noticed is that, with some digital signatures, I disable a good majority of the form to read only "lock fields", then when I email I get the above text replaced in the body of the email.

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle, with javascript and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?
    edit: Something I noticed is that, with some digital signatures, I disable a good majority of the form to read only "lock fields", then when I email I get the above text replaced in the body of the email.

  • How can I scan multiple pages to one file with MG 7120

    My printer does not have ADF. How can I scan multiple pages to one file on my MG 7120?

    Hi albabynyr,
    There is a program that comes with the printer called the IJ Scan Utility that can assist you with scanning multiple pages into a single file.  To scan using the IJ Scan Utility, please follow these steps:
    1. Start IJ Scan Utility by going to your Start menu, then selecting All Programs, then Canon Utilities, then  IJ Scan Utility (folder), then IJ Scan Utility (program).
    2. In the Canon IJ Scan Utility window that opens, click SETTINGS.... in the bottom right of the window. The Settings dialog box appears.
    3. Click the DOCUMENT SCAN option on the left pane of the window.
    4. In the right pane of the window, locate the SELECT SOURCE field and select the DOCUMENT option.
    5. Set the color mode, document size, and scanning resolution as required in the rest of the fields shown in the window. Click DOCUMENT SCAN ORIENTATION SETTINGS... to specify the orientation of the documents to be scanned.
    6. In the SAVE SETTINGS section of the window, you will select the save format and location of the document you are about to scan.
    a.) In the FILE NAME field, specify the name you would like to give the file. By default the filename will begin with IMG; you can remove IMG and change it to whatever you would like to name the file.
    b.) In the DATA FORMAT field, use the drop-down arrow to select the PDF (Multiple Pages) option.
    c.) In the SAVE IN field, please navigate to the area where you would like the file to be saved once it is scanned in. By default, the file will be saved in the DOCUMENTS folder.
    7. Once all settings have been selected, click the OK button at the bottom of the SETTINGS (DOCUMENT SCAN) window. The IJ Scan Utility main screen appears.
    8. Click the DOCUMENT button. Scanning starts. After a page has scanned, the screen to continue or end scanning appears. If you have more pages to scan, place the next page on the platen and click Scan.  Do this each time a page has completed scanning.  After the last page has been scanned, click Exit. Scanned images are saved in previously selected folder location specified in the SETTINGS... window. Click the CANCEL button to cancel scanning if needed during scanning.
    Hope this helps!
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Multiple Page Forms

    I have a form, that I'd like to combine into multiple pages after it's been filled out. However, when I do this, all the form field information is replace with that of the first page. Is there a way to combine multiple forms into a single document, while retaining each individual files form data?

    I have one PDF form that is a template. It is opened and and copies are saved, each with different data in the form fields. I now need to combine all those individual files into one multi-paged document that can be flipped through and edited.
    Each form has about 100 different form fields, and there are 130 different files that I need to combine. This means I'd have to open and rename 13,000 form fields by hand. I'm trying to avoid this.
    My hope was when a new page was added to the document, there'd be a setting to append each form field with a page number. (Name-page1...Name-page2...etc.) Looks like this is not possible.
    Is there any way to propagate the same form field across multiple pages giving each field a unique name automatically?

  • Scanning multiple pages into one document with an automatic document feeder

    when using automatic document feeder to scan in multiple pages - using the Image Capture app, this process does not work for more than 2 pages. However works perfectly in PC environment.
    Using a MacBook Pro with 10.8.4 and a Lexmark Interpret 405S All In One Scanner.
    Is there any other all in one device that can perform this function in a Mac environment?
    Please advise.

    Hi @FentyFly ,
    I see by your post that you would like to know how to scan multiple pages into one file. I would like to help you out today.
    From the HP Scan Software, click on the link for Advanced Settings, then uncheck Create a separate file for each scanned page.
    Here is a URL for how to scan and change the settings. Just select your operating system.
    Scan.
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    If you need further assistance, just let me know.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Scanning Multiple pages on Macbook Pro with Deskjet 1051

    I cannot find any options to scan multiple pages with a Mac osx yosemite.
    Also, the only drivers you all have are for the 1050, is it the same? 

    Hi 9milli,
    Welcome to the HP Forums.
    I see that you are having an issue with doing multiple scans to the Mac.
    If you have not downloaded and installed the Full feature software and driver bundle, you will need to do so.  This is the proper link for the download and to answer your question it the 1051 is the same as the 1050, yes it is.
    Please click on the following link for the HP Deskjet 1050/1050A All-in-One Printer series - J410 Full Feature Software and Drivers.
    Thanks for your time.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • How to print multiple pages using Internet Explorer with af:showPrintablePageBehavior

    Hello,
    I am facing one issue with using af:showPrintablePageBehavior. I found similar posts and google pages, but unable to fix the issue. Most relevant post is,
    Print issues with af:showPrintablePageBehavior and Internet Explorer
    I have a page show in a af:popup. This page contain a Title in the top, af:outputText and a Print button below it. I have added af:showPrintablePageBehavior to Print button. I am using lots of data in the af:outputText. When I click on Print button, showPrintablePageBehavior is opening new browser window with multiple pages. But when I click on the Print Preview or Print, only first page is shown.
    I have tried the solution mentioned in above post but no luck.
        <f:verbatim>
            <style type="text/css">
                textarea {
                    width: 95%;
                    height: 350px;
                    overflow: auto;
                @agent ie {
                    af|document:maximized::printable {
                        position: static;
            </style>
      </f:verbatim>
      <af:panelStretchLayout bottomHeight="10%" startWidth="0%" endWidth="0%" topHeight="10%" inlineStyle="height: 100%; width: 100%">
      <f:facet name="top">
      <af:panelGroupLayout id="pnlGrpTitle"  layout="vertical" halign="center" inlineStyle="width: 100%;">
      <af:spacer id="titleSpacer" height="10px" />
      <af:label value="Title" inlineStyle="font-weight:bold; font-size: 16px; color:#000066; padding-left: 5px" id="dialogTitle" />
      <af:spacer id="titleSpacer2" height="20px" />
      </af:panelGroupLayout>
      </f:facet>
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="0" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="25" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelGroupLayout id="pnlTextArea" layout="scroll">
      <af:outputText binding="#{mybean.tfdArea}" escape="false" id="tfdArea" />
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      <f:facet name="bottom">
      <af:panelGroupLayout id="pnlGrpBottom" layout="vertical" halign="center" inlineStyle="width: 100%">
      <af:commandToolbarButton id="cbPrint" shortDesc="Print" icon="/images/print.png" inlineStyle="width: 40%" >
      <!--af:clientListener method="self.print" type="action"/-->
      <af:showPrintablePageBehavior />
      </af:commandToolbarButton>
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
    Any idea how to fix it?
    - Sujay

    Hello,
    I am facing one issue with using af:showPrintablePageBehavior. I found similar posts and google pages, but unable to fix the issue. Most relevant post is,
    Print issues with af:showPrintablePageBehavior and Internet Explorer
    I have a page show in a af:popup. This page contain a Title in the top, af:outputText and a Print button below it. I have added af:showPrintablePageBehavior to Print button. I am using lots of data in the af:outputText. When I click on Print button, showPrintablePageBehavior is opening new browser window with multiple pages. But when I click on the Print Preview or Print, only first page is shown.
    I have tried the solution mentioned in above post but no luck.
        <f:verbatim>
            <style type="text/css">
                textarea {
                    width: 95%;
                    height: 350px;
                    overflow: auto;
                @agent ie {
                    af|document:maximized::printable {
                        position: static;
            </style>
      </f:verbatim>
      <af:panelStretchLayout bottomHeight="10%" startWidth="0%" endWidth="0%" topHeight="10%" inlineStyle="height: 100%; width: 100%">
      <f:facet name="top">
      <af:panelGroupLayout id="pnlGrpTitle"  layout="vertical" halign="center" inlineStyle="width: 100%;">
      <af:spacer id="titleSpacer" height="10px" />
      <af:label value="Title" inlineStyle="font-weight:bold; font-size: 16px; color:#000066; padding-left: 5px" id="dialogTitle" />
      <af:spacer id="titleSpacer2" height="20px" />
      </af:panelGroupLayout>
      </f:facet>
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="0" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="25" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelGroupLayout id="pnlTextArea" layout="scroll">
      <af:outputText binding="#{mybean.tfdArea}" escape="false" id="tfdArea" />
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      <f:facet name="bottom">
      <af:panelGroupLayout id="pnlGrpBottom" layout="vertical" halign="center" inlineStyle="width: 100%">
      <af:commandToolbarButton id="cbPrint" shortDesc="Print" icon="/images/print.png" inlineStyle="width: 40%" >
      <!--af:clientListener method="self.print" type="action"/-->
      <af:showPrintablePageBehavior />
      </af:commandToolbarButton>
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
    Any idea how to fix it?
    - Sujay

  • Offline Interactive PDF Forms Using EMail with WebDynpro for ABAP

    These is a tutorial on implementing Offline Interactive PDF Forms using Email to both send out and receive the form back using WebDynpro for Java.
    Is it possible to implement the same using WebDynpro for ABAP, specifically receiving the forms via email server.
    Regards,
    Mark

    Hi Mark,
    Check this out :
    https://www.sdn.sap.com/irj/sdn/interactiveforms-elearning
    Go to section :
    Send, Receive, and Process Interactive Forms via Email in SAP NetWeaver Application Server ABAP (RIG session 4A)
    and for the ABAP WebDynpro :
    SAP Interactive Forms by Adobe in Web Dynpro for ABAP (Session 3A) .
    I managed to make it work in my internal sytem.
    Goodluck.
    Cheers,
    Danny

  • Mail Services New email with selection doesn't work, leads to Force Quit

    I've posted this before, but got no replies so I'm trying again since it's driving me crazy. It was a problem under Mavericks and still exists under Yosemite's Mail.
    When I select text and then go to the Services menu and pick "New email with selection," much of the time a totally empty new email message window opens , won't let me type in it at all, nor will it close or send. It just sits there until I Force Quit Mail.
    HELP PLEASE!!!

    Standard Apple Mail. I'm running Yosemite 10.10.1, and I'm amazed to see that About Mail says it's Mail Version 8.1 (1993), copyright 1995-2014 Apple Inc. 
    Interesting thought, do you think that it doesn't like to work with itself?  Actually, I'm fairly sure I've had the problem inside of other apps but I should document that.  I'll keep notes to see where this happens. 

  • Forwarding email with attachments doesn't work

    In Mail.app, why when I forward an email with any kind of attachment does the email only contain a text description of said attachment and not the actual attachment itself?
    I then have to down the attachment to my desktop and re-attach it to the email I'm forwarding. Not a big deal, but I don't see why I need to take these extra steps and cannot find a relevant preference in the Mail.App client prefs.
    Thanks!

    BD,
    That was totally it. This has been plaguing my Mom and frustrating her for a year now. For some reason, I wasn't notified of your response many moons ago.
    Thanks so much,
    Josh
    ps. lol, I guess in looking at the time stamp it's been 4 years - jeez. Thanks again!
    Message was edited by: Joshua Nelson2

  • Scan and collate multiple pages to one document with hp8630

    How do I scan, collate and save a multiple page document into one pdf document utilizing an HP8630? Thank you.

    Hi , I understand that you would like to know how to scan and collate multiple documents into one file. I would be happy to help you.
    If you are using Windows, please try the following steps: From the HP Scan software, select Advanced Settings, click on the File tab and uncheck Create a separate file for each scanned image, this will allow multiple page scans to save to one file.    If you are using a Mac, try the following: From the Preview Software, once you have the scanned image, select PDF and check combine into single document below. From the Print and Scan window, select PDF and check combine into single document below. What operating system are you using?How to Find the Windows Edition and Version on Your Computer.Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer? If you appreciate my efforts, please click the 'Thumbs up' button below. Thank You.

  • Emails with attachments won't send

    Hi - I'm a new Mac user. I have set up a gmail account and set this account up on my Mac (10.6.4). I can send messages but as soon as there is an attachment (even very small ones of 50kb or so) the message doesn't send and I eventualIy get message a pop up saying that the mail can't be sent using this server.
    However, the 'connection doctor, shows that my 'connection and login to the server is successful'. I've deleted the account and reset it but it doesn't make any difference.
    I have (in gmail) included a divert from my work e-mail address. These messages are received ok as well.

    Do you have a signature line on the bottom of your email?
    I know when I got rid rid of mine on my mac emails, all attachments would magically work.

  • Sending email with Entourage worked, but Apple Mail fails

    I want to migrate from Entourage to Apple Mail. However sending emails using the smtp of my hosted website, fails every time.
    I use the same SMTP settings as configured in Entourage, but the connection manager cannot connect to these smtp servers.
    When I setup a gmail account, these smtp settings do work, so this is a strange problem.
    In the SMTP configuration I have indicated that no SSL must be used and authentication is by Username/Password. Also the default port must be used, so this should be easy.
    Does anyone recognise this problem and help me out?
    Thanks in advance.

    23circles:
    I would like to find a way to only have the gmail inbox but still send from any three of her accounts.
    You can do it this way:
    Set up only one account. The one from which you want to receive mail.
    In Mail > Preferences > Accounts > +gmail acct+ > Email Address insert the other email addresses, separating each with a comma and single space.
    Only the GMail account will receive incoming Mail. However, when you want to send from another address, in the From dropdown menu toggle the address from which you wish to send mail.
    You will, of course, delete the other accounts you have created to avoid getting incoming messages.
    cornelius

  • When I try to copy a draft email with a picture it closes mail

    when I try to make a copy of a draft email and I select the email and press copy it closes mail every time Why.

    In your System Preferences, the Language and Text pane, you don't by chance have any input sources checked do you?

Maybe you are looking for

  • Sales Order Reason - Account Assignment

    hi experts, can the sales order reason in VA01 be used to drive account assignments or is sales order reason field solely used for reporting purposes. thanks!

  • Use of FM 'SELECT_OPTIONS_RESTRICT' in other than INITIALIZATION event

    Hi all, I am using function module SELECT_OPTIONS_RESTRICT to restrict the select option ranges. My question is can we use this FM into another event such as AT SELECTION-SCREEN. Basically I want to restrict n grayed out Select Option High value and

  • Deleting music

    Is there any way itunes will delete your music files in itunes music in your music documents folder? Ive always had a copy of all my music in a seperate folder but now that ive gathered a large collection (21.7GB) its kinda adding up on my hard drive

  • Problem up dating Photoshop CS6

    1) I have Photoshop CS6 & Adobe Bridge CS6 installed since 2012.   2) I recently discovered that Bridge "Edit in Camera Raw" is missing at least one(1) function. When I go to LENS CORRECTION, under the "manual" tab, I do not have the auto correction

  • ORA-01092 Error When Attempting to Create Database

    hi all, i'm attempting to run the following SQL in order to create a database called LEAF. however, i'm receiving an ORA-01092 error message as shown when I attempt to do this. does anyone see any problem with my database creation script or have any