Adding line breaks in email messages created by forms

I've used ADDT to create a feedback form, pulling through data from a databse.
It generates the code :
//WriteContent method
$emailObj->setContent("First name : {firstname}Last name : {lastname}Tel : {tel}Email : {email}Comments : {comments}Preferred method of contact : {prefer}");
How can I add line breaks in the email message? I've tried
tags, but no joy.
Cheers.

I presume you said slash n there - that was it. Cheers.

Similar Messages

  • Beginner needs help with adding line breaks...

    Hello,
    I would like to add line breaks after each of my form fields I tried adding
    but it does not work. Can anyone help please?
    Thanks in advance,
    Julien.
    <h:form id="calendarForm">
               <h:messages/>
                <h:outputLabel value="login"/><h:inputText id ="login" value="#{AccountJSFManagedBean.login}" required="true"/><h:message showDetail="true" for="login"/>
                <h:outputLabel value="firstName"/><h:inputText id ="fn" value="#{AccountJSFManagedBean.firstName}" required="true"/><h:message showDetail="true" for="fn"/>
                <h:outputLabel value="lastName"/><h:inputText id ="ln" value="#{AccountJSFManagedBean.lastName}" required="true"/><h:message showDetail="true" for="ln"/>
                <h:outputLabel value="email"/><h:inputText id ="email" value="#{AccountJSFManagedBean.email}" required="true"/><h:message showDetail="true" for="email"/>
                <h:outputLabel value="date of birth"/>
                <t:inputCalendar id="secondOne" monthYearRowClass="yearMonthHeader" weekRowClass="weekHeader"
                    currentDayCellClass="currentDayCell" value="#{AccountJSFManagedBean.dateOfBirth}" renderAsPopup="true"
                    popupTodayString="#{example_messages['popup_today_string']}" popupWeekString="#{example_messages['popup_week_string']}" required="true"/>
                 <h:commandButton value="sign up" action="#{AccountJSFManagedBean.signUp}" />
            </h:form>

    Which form fields? In the code posted, I don't see where you have tried putting linebreaks.
    You can try putting the <BR> tags in f:verbatim tags. Like this:
    <f:verbatim><br /></f:verbatim>CowKing

  • Line breaks in emails when using Gmail

    *The problem arises because the iPhone uses "Plain Text" to send emails.*
    *When using gmail, gmail automatically inserts line breaks in "Plain Text" emails every 78 characters, the reason why you see the breaks when unexpected.*
    *See: http://www.google.com/support/forum/p/gmail/thread?id=4d1cecc1aab102ef&hl=en*
    *To fix this problem:*
    *1. Apple can allow us to send mail with Rich Text support from iOS devices OR*
    *2. Google has to change the line breaks setting so that Plain text flows (and isn't broken) <-- this option is probably more realistic*
    *I have tried from a hotmail account, sending email as plain text doesn't have line breaks imposed like the gmail account, but rather "flows".*
    *If you want gmail to add a setting to disable line breaks in plain text emails:*
    *Suggest the feature here:*
    *http://mail.google.com/support/bin/static.py?page=suggestions.cs*
    *I chose these categories:*
    *- I have another idea*
    *- Sending and receiving*
    *- - - Composing and delivery*
    *- - - - Sending options*
    *-For comments: Configure or disable plain text wrap length.*

    I am having the same problem with an IMAP/SMTP account. It was a GMail account, I switched it to using the GMail auto setup and haven't had any issues.
    But under the standard IMAP/SMTP setting almost 1/3 of all messages were showing no content.
    Though I don't recall exactly - I think most of them were sent while I was on 3G, and it otherwise works fine on WiFi.

  • Adding an image to email message

    How do I add an image to an email message? I see how to change the font color and background color, but cannot see how to add an image. I am not able to copy and paste an image into the email (and actually cannot copy and paste ANYTHING into an email, that's another question I guess). I would really like to add an image to an email, however, and just can't see how to do this!
    Thanks.

    kguz wrote:
    How do I add an image to an email message? I see how to change the font color and background color, but cannot see how to add an image. I am not able to copy and paste an image into the email (and actually cannot copy and paste ANYTHING into an email, that's another question I guess). I would really like to add an image to an email, however, and just can't see how to do this!
    Thanks.
    Assuming you are using Verizon Webmail for your email, as far as I know you cannot attach any files if you are using the Basic version. However, if you are using the Rich version, you should be able to add attachments using the Attach box above the email you are creating.
    To check which version you are using, under My Settings click on the General tab and see what is shown for Desired Interface. If it is Basic, you can change it to Rich and you will now have the ability to attach files. Note that Rich takes more bandwidth on your internet connection, so unless you have DSL service or better you will probably not be satisfied with the performance. But if you try Rich and you aren't satisfied you can always switch back to basic.
    Hope this helps.
    Justin
    Verizon FiOS TV, Internet, and phone
    QIP6416, IMG 1.6.2, Build 08.58
    Keller, TX 76248 

  • Adding PDF File to Email Message

    When I attempt to add a PDF file to an email message (via Outlook) I get the following error message, after which the program shuts down: "The instruction at 0x6148f787 referenced memory at 0x00000000. The memory could not be read." Please Help!

    It runs in a Window titled Outlook all by itself. Guess I'm an idiot because I still can't find the version. Anyway, this problem only happens when I'm using IE. When I use Firefox, I can attach a PDF file to an email message just like I used to do using IE.
    [private data removed]

  • Send email message without attaching form

    Below is a sample click event javascript for a button.  This will generate an email including form information of your choosing without attaching the actual form (PDF) itself.
    This would benefit people in situations that have the form auto saving to a predetermined location, but would still like an email notification that the form has been submitted.
         var cMyMsg = "Your Text\n\n";
              cMyMsg += "Your Text " + Fieldname1.rawValue + "\n";
              cMyMsg += "Your Text " + Fieldname2.rawValue + "\n";
         app.mailMsg({
              bUI: false,
              cTo: "To EmailAddress",
              cCc: "CC EmailAddress",
              cSubject: "Your Subject Text",
              cMsg: cMyMsg
    Enjoy!

    Below is a sample click event javascript for a button.  This will generate an email including form information of your choosing without attaching the actual form (PDF) itself.
    This would benefit people in situations that have the form auto saving to a predetermined location, but would still like an email notification that the form has been submitted.
         var cMyMsg = "Your Text\n\n";
              cMyMsg += "Your Text " + Fieldname1.rawValue + "\n";
              cMyMsg += "Your Text " + Fieldname2.rawValue + "\n";
         app.mailMsg({
              bUI: false,
              cTo: "To EmailAddress",
              cCc: "CC EmailAddress",
              cSubject: "Your Subject Text",
              cMsg: cMyMsg
    Enjoy!

  • Just added Mavericks 10.9.1 and can no longer add an Excel file creating yesterday to an email message created on my MacBook Pro. I can locate the file in my Excel icon but not to attach to an email

    Need help in attaching Excel files to emails......Excel spreadsheet created yesterday cannot be located to attach? The file can be located by entering the Excel icon but not visable when creating an email and attempting to attach.....seems to only inpact newly created files?

    Support - Office.com - Microsoft

  • Adding company logo to email messages?

    I'd like to add my company logo to my Apple Mail Signature, but I'm not sure how to do this without it becoming an attachment. I'm assuming I'll need to include a link to an external website that stores the logo. If so, is there a way I can use my iDisk account to facilitate this?
    Thanks!

    I would use a JPG but you could use a PNG or a GIF. If the logo has been created in Photoshop or Indesign (doesn't really matter how it has been created really) but a compressed image will save a bit of space.
    Something to be aware of is that some Mail servers are set up by some companies to convert HTML or rich text emails into plain text so any image may end up as an attachment in that scenario. While it might look nice and pretty when it leaves you, that may not be the case when delivered.
    Chris

  • Unwanted Line Breaks in PL/SQL CODE after 'CREATE OR REPLACE' statements

    Does anybody know how to keep SQL Developer from automatically editing PL/SQL code and adding line breaks after 'CREATE OR REPLACE' statements?
    It keeps taking:
    CREATE OR REPLACE PACKAGE DEVELOPER AUTHID DEFINER
    And turns it into:
    create or replace
    package developer AUTHID DEFINER
    This unwanted linebreak causes our autodeployment processes to break.
    Thanks,
    Michael Dunn
    University of Notre Dame
    Edited by: user9133268 on Feb 21, 2012 8:00 AM

    Hi Michael,
    I believe nothing for this issue has progressed since it was asked here:
    2.1 RC Extra Line Breaks
    As there may be approval for some planned improvements to the SQL Formatter feature in 3.2, I logged an enhancement request for you:
    Bug 13744858 - FORUM: UNWANTED LINE BREAK AFTER CREATE OR REPLACE SYNTAX
    Regards,
    Gary
    SQL Developer Team
    Edited by: Gary Graham on Feb 21, 2012 4:19 PM
    But if you have control over your auto-deployment process code, it might be quicker to enhance that to deal with CREATE OR REPLACE on the same or the preceding line. Also, note that if you edit the package DDL to put the CREATE OR REPLACE on the same line with the package name in the code editor, then immediately use Export or Save Package Spec and Body to save it to disk, then PACKAGE <name> will appear on the same line as the CREATE OR REPLACE syntax.

  • Insert line break

    I am using v 7.0
    I have a 12 page outline and on page 7 I need to insert a new line of text.
    When using the Touchup text tool, insert and line break, a box is created around one line of text. Upon hitting the ENTER key instead of forcing a line break the line of text was pushed down and superimposed over a line of text below it. I am UNABLE to insert text in the newly created white space.
    1. How should I do this correctly?
    2. How may I correct this error?
    Thank you VERY much. frank

    You need to go back to the original document and make the change. Then create a new PDF. What you are trying to do is not a normal function of Acrobat. Editing can be done, but only minor editing. Moving lines is typically not one of the easy functions to do. You might be able to move the box below what you did enter, but that is about the only solution I know of.
    If you don't have the original, you probably need to export the file to a word processor or other text file and fix it there. You may have to reformat. That is likely easier than what you are trying to do, particularly if it is only a draft type document.

  • SSL and line break "\n"

    Hey,
    I have a SSL client/server pair that pass messages between each other. Basically I'm having a problem where any sent message containing a line break are split based on this line break.
    So if I sent "cheese \n monster \n", the server would recieve it as two different commands ("cheese" and "monster), instead of a single string.
    Is this unavoidable? I could replace the line breaks with some other identifier and replace them with line breaks when the message is recieved. But I'd rather try and find a way around this first.
    Thanks in advance :)

    SSL doesn't do anything with line-breaks. Once the SSL handshake has taken place, it's just a Socket. I've used JSSE to transfer all kinds of data, and it doesn't do anything to the data being sent. If your code's behavior has changed after switching to SSLSocket, then I'm quite certain you've changed more than just the socket-type along the way.
    What I'm saying is, if you're using readLine() to read from the Socket stream, then it's going to give you each line in turn - that's what readLine() does, whether your end datasource is a SocketInputStream or a File. If your data has linebreaks in it, then you have two choices - don't use readLine() the way you are, or encapsulate your data as a message. Say, have a "MESSAGE START" at the beginning, and a protocol that says "do readLine() until you see 'MESSAGE END' ", for example.
    Grant
    (Well, there is a third option - have a protocol that breaks in the face of line-ends in the data. But I don't think you want that one...)

  • Can you create a To Do from the Subject line of an email?

    Does anyone know if it's possible to create a To Do from the subject line of an email in Mail?
    Here's what I'm trying to do. I open a mail message, then I can highlight any text in the body of the message. When I do this, the To Do button becomes enabled. If I highlight the subject of the message, the To Do button remains disabled.
    Is there any way of doing this aside from highlighting text, then changing the text?
    Thanks!

    Open Mail Help from the Help menu. One of the main topics listed is how to create to-dos. Click on it to see what you are able "to do."

  • N82 - Creating line spaces in Emails

    Hi
    I often check my webmail account on my N82 by connecting to a wireless network.  If I want to write or reply to an email I can't find the equivalent of an "Enter" button to create a line space.  Consequently any emails I write on my N82 end up as one long paragraph.
    So that I can break the emails I write into paragraphs is there a combination of keys I can press on my N82 to simulate pressing the Enter button a PC keyboard?
    If its of any use, my webmail account is NOT Hotmail or Gmail.
    Thanks

    That's an RTFM question. Press the '0' button 3 times in succession.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • TEXT Mail line break issue in Email body

    Email content is breaking up when the preference is MAILTEXT.
    Please see the comments Line Break.
    Ex:
    Dear --Line Break
    PETER,
    Thank you for contacting XXXXX. The service request number 547631 has been created for the following issue:
    Testing Notification
    A technical support representative is working to resolve your issue.
    Because we recognize that many of our customers would prefer to find answers conveniently on our website, we'd like to invite you now and for future needs to search our Knowledge Base online at:
    If --Line Break
    you have any questions or concerns, please contact us at XXXX or XXXX and have your service request number available for the technical support representative.
    Thanks --Line Break
    again, and we appreciate your continued business.
    We are on 11.5.9 and WF version is 2.6.0

    If you have not got a resolution for this issue still, this was a bug in Workflow code and fixed in OWF.H I believe. Please search for Oracle Workflow one-off patches if an one-off was released for 11.5.9.
    Thanks

  • Why Rich Text (HTML Only) format email introduces line breaks (paragraph marks) in the email body in html?

    A sentence in rich text (change in Options, Delivery format) appears as a single sentence in browser. But when I check the page source I see that sentence has been broken in to multiple lines. Why is this done? Isn't this a bug?
    When viewed in a browser or application that supports rich text this does not create any problem since the line breaks are not taken into account . But I am trying to extract the text from this html and display in a nonHTML application like notepad.
    Is this done on purpose?
    For eg.
    In browser - Honesty is the best policy
    In View HTML Source -
    Honesty
    Is the
    best
    policy.

    lets start at the beginning.
    There is no such thing as rich text email, unless it in internal corporate stuff like MS Exchange, Lotus notes etc. EMail on the internet is HTML or Plain Text.
    I have no options > delivery format in my settings. Is this something to do with Outlook perhaps?
    Then there is your image. All those MSO objects. They stand for Microsoft Office Objects and indicate the source of the HTML as being Outlook or at least Microsoft Office. All in all I think your asking about Microsoft actions on a Mozilla forum.

Maybe you are looking for