Not allow any data to be pasted into a Rich Text Editor Field

Version 4.1.1.00.23

Hello

Does anyone know how cannot don't not the user to paste data into a field of Rich Text Editor?

I want to only allow them to enter data into the rich text editor and not paste from another source.

Thank you

Joe

I was able to solve this problem.

The only tags that are allowed for my requirement are: p, ol, ul, li, em, strong, a, href.  No other tags are allowed.

The query is:

SELECT REPLACE (REGEXP_REPLACE (REGEXP_REPLACE (: P28_PATH_TO_GREEN)))

, '<'            >

'(/?'           || -\1 is optional / can

' (' || -one of the following conditions:

' p | »         ||

' ol | »        ||

« ul | »        ||

« li | »        ||

EM | »        ||

"strong" |

' a | »         ||

'href ' |

')'          ||

'[ >]'        ||  -Then, space or

')'

, '<>

1

0 - replace all occurrences

'i' - case-insensitive

)

, '<[^`][^>]*>'

)

, '<>

, '<>

)

DOUBLE;

Here's how it works:

  1. The inner REGEEXP_REPLACE inserts a grave accent above all good tags (p, ol, ul,... become 'p,' ol', ' ul,...)
  2. The outdoor REGEXP_REPLACE eliminates any tag that does not begin with a grave accent, leaving only the good tags
  3. REPLACE removes serious accents, added in step 1.
  4. Implement a after submit Page calculation on the Page element using the Type of query SQL (single return value).

Thank you

Joe

Tags: Database

Similar Questions

  • IPad will not allow any fly, so it does not open

    IPad will not allow any fly, so it does not open

    I have the same problem

  • Why the rich text editor shows unsupported data type?

    Hello

    I used the rich text editor in my application (for the message box). I used the data BLOB to the type. But, when I click on the button send it shows invalid hexadecimal number and also in back-end, it shows the data type not supported. Why is it so? Need your help.

    --

    Thank you.

    Venky_prs wrote:

    Thanks for the reply. I changed on the CLOB type. Now, the intervention process. But, in the back-end the message column contains HTML format. For this rich text editor, I used the source as the database column type. How can I get the actual message instead of the html format.

    Elements of the rich text editor are used to create HTML text. If you need/want data plain text, then use a Textarea base element.

  • Rich Text Editor does not

    I use jdeveloper 11.1.2

    on my page, I have

    rich text placed on the Group Panel Editor layout a0 with visible = false attribute
    input field for text placed on the Group Panel layout with visible = false attribute a1
    I select a component of the radio and use it to decide which provision of the Group Panel I'll show
    I use the following code to java script to show or hide the Panel group layouts


    function changed (ev) {}
    var ind = ev.getSource () .getValue ();
    ev.getSource ().findComponent("a0").setVisible (false);
    ev.getSource ().findComponent("a1").setVisible (false);
    ev.getSource () .findComponent ("a" + ind) .setVisible (true);
    }

    My problem when I choose the group put on a0 page Panel to display the rich text editor in it does not
    which means I can write anything about it and can change any of the properties of the inside words

    How can I fix it

    Hello

    not sure how you switch between Panel groups. but try a PPR of the surrounding container

    Frank

  • Format rich text editors or tools do not work in Firefox

    I use Win 7 64 bit and Firefox 16. Problem is that I and other users of the Forum, that we belong to, can not use the editor text rich Format or tools to edit text...
    For example, when you type your text and you want to change the format of "BOLD" etc. the editor gives a code like this:

    [undefined = undefined] Found thread [/ undefined] where it should be [b] Thread Found [/ b]
    The undefined Word opens with all the formatting tools.

    Using another browser like Chrome or IE the formatting or rich text editor works very well. Like I said that's not me who has this problem, we are not a lot of people on the forum who is having the same problem.

    Counsel for solving this problem will be greatly appreciated.

    Thanks in advance

    Kind regards
    MEA Albrecht

    «Due to the change Firefox 16.1, when using the editor to insert MyCode you experience a problem where the tags are displayed in form [undefined = undefined]/ undefined.» This problem has been fixed in 1.6.9, MyBB but until free us, we have provided a patch for you to make your own maps. »

    http://community.MyBB.com/thread-127983-post-926896.html?highlight=Firefox#pid926896

    The fix is discussed here - http://community.mybb.com/thread-127322-post-922533.html#pid922533

    A forum administrator can manually apply this hotfix, or simply wait for the update to MyBB 1.6.9.

  • Firefox does not allow me to copy and paste the content of Web sites. How can I solve this problem?

    When I enter this site, there are some areas that FIrefox will allow me to copy and paste. However, if the content is in the pictures, I get a message indicating that options copy/cut/paste is not available in Mozilla and Firefox. Then, the info box wonder if I want more information or to cancel the request. When I ask for more information, the system provides information on changing preferences; However, these measures do not seem to work for me. Help, please.

    Thank you.

    What measures have you tried - prefs.js or user.js edition?

    My recommendation would be to use Windows shortcuts to cut, copy and paste: Ctrl + x, Ctrl + c and Ctrl + v. You can also use the context menu for these actions. On most websites, you don't really need to use the buttons for these features.

  • sys_refcursor do not fetch any data, even if the query returns the value

    I use sys_refcursor to return the columns and aid below the procedure to do. Although the data are there in table_1 and table_2.

    PROCEDURE test_pro (abc_date N, DATE,
    cur_get_data ON sys_refcursor
    )

    OPEN cur_get_data
    for
    Select A.col1, B.col2
    from table_1 A
    where A.dis_date = abc_date
    left outer join
    table_2 B
    on
    A.dis_date = B.dis_date;

    IF cur_get_data % rowcount = 0
    then
    raise e_error;
    END if;

    EXCEPTION
    When e_error
    then
    -no_data_found;
    while others
    then
    -(giving an error with the SQL error code);

    END test_pro;


    When running under sql in the sql pl/sql developer window pick
    data
    Select A.col1, B.col2
    from table_1 A
    where A.dis_date = abc_date
    left outer join
    table_2 B
    on
    A.dis_date = B.dis_date;

    But while testing the test_pro in the test of the pl/sql Developer window, it is
    do not fetch all data and raise e_error every time

    is there a problem arising from the use IF cur_get_data % rowcount = 0 whenever that happens in the exception block.

    so can someone please put a few ideas what cud be the reason for this?
    PROCEDURE test_pro(abc_date IN DATE,
                       cur_get_data OUT sys_refcursor
                      ) is
    BEGIN
    
      OPEN cur_get_data for select A.col1,B.col2
                              from table_1 A
                             where A.dis_date = abc_date
                                   left outer join
                                   table_2 B
                                on A.dis_date = B.dis_date;
    
    /* while testing let exceptions just pop out
    EXCEPTION
    
      when no_data_found
      then
    ------no_data_found;
      when others
      then
    --------(giving SQL error with error code);
    */
    END test_pro;
    

    then you test as something like

    declare
    
      my_date   date := to_date('20120621','yyyymmdd');
      my_cursor sys_refcursor;
      col1      ... ;
      col2      ... ;
    
    begin
    
      test_pro(my_date,my_cursor);
    
      loop
    
        fetch my_cursor into col1,col2;
        exit when my_cursor%notfound;
        dbms_output.put_line(col1 || ' ~ ' || col2);
    
      end loop;
    
    end;
    

    Concerning

    Etbin

  • Change the order of the columns does not cause any data found error report

    Hello. I have a weird problem (and I'm new to APEX). I have a subregion of report that shows the details of a master record based on the ID of the parent area. When I have everything first to change SQL for the query and apply the changes page works fine. When I go back and change the region > attributes report and use the arrows to change the order of the columns the region then returns:

    error report:
    ORA-01403: no data found

    I tried to change the query so that the columns found in the desired order and who has also not returned no data error. If I go back to my original query (which had 2 fewer columns) the page works again. Then I change to the new query (2 addtl columns), and then it works again, until I have change the order of the columns again. Don't know if it would be serious or not, but one of the columns is a 2 columns of the table concat.

    Any ideas would be appreciated, because I'm out of them.

    Thank you!

    use: Apex 4.0
    DB: 10g Exp

    "807428," Hi

    using 4.0 or 4.0.1? Can you reproduce the same problem on apex.oracle.com as well?

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Calendar Gadget has all orange background and does not show any date information

    My calendar gadget all orange background and does not display the date information. I tried the various help and resets listed in the site support, and also through a search engine search.  No solution that was out there was again active. I tried to reset the file .dll, re-installed McAfee, closed, deleted and re-installed the gadget.  I'm running to do a total reinstall of Vista (not), but I don't really want to do this for a simple gadget. I don't know that there is a difficulty there. I have install a registry cleaner and then uninstalled it, but I don't remember the name of the program. Thoughts?

    It is a few extra for support measures to...

    This behavior is observed if the XML registration is missing in the system. To resolve this issue, follow these steps:

    • Close the Windows Sidebar . To do this, right-click on the Sidebar icon in the Notification area, and then clickoutput (GK: in the case of Windows 7, press Windows key + R > typetaskmgr and press enter > Proccesses tab > selectsidebar.exe > click on the end process button)
    • Open an elevated command prompt window. To do this, clickStart , click principally made programs , Accessories , right-clickguest , and then click run as administrator .
    • In the command prompt window, type the following command and press ENTER:

    regsvr32 msxml3.dll

    Similarly, run these commands:

    regsvr32 scrrun.dll

    regsvr32 jscript.dll

    If the registration was successful, you will see the message DllRegisterServer in succeeded to for each executed command. OpenWindows Sidebar (sidebar.exe ) and check if the problem is resolved.  You will need to disconnect and reconnect your user account to check if the issue has been addressed.

    Aaron
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • Keys do not work in the native text editor (field Textbox)

    Hi all

    I'm porting an application for one of the blackberry device, in that soft key mapping I used the api to the RIM so that I can map LSK button Menu and the RSK to return key. But in the field application TextBox is also there, when I open the native text editor (Textbox) and try to input by keyboard that none of the keys work.

    Can anyone suggest a few ideas for the keys work in the native text editor.

    Note: This problem only occurs when I use some RIM api.

    Your method keyDown() "eat" all the key events. You should return 'false' for all the events that are not managed.

  • Adobe Story Script does not allow me to integrate the script into Premiere Pro

    Integration with Premiere Pro Adobe story Script does not work I would like to integrate the script

    Goal: Incorporate a Story Script from Adobe in Premiere Pro. (mac)

    Method: I have a video with a text transcript.

    I inport the transcript in Adobe Story and save it in the file extension "Adobe" correct history (.astx)

    I save on the cloud to Adobe, and I also exported it to my office.

    I launch Premiere Pro and import the video that I transcribed.

    The I try one of the 3 ways to get the script of the video in PP.

    The first steps are the same as below:

    I go to Adobe Story and you connect from PP.

    I search for the file.

    I add a scene.

    Make sure that the scene is the same as it is in PP

    then...

    1.

    I drag and drop it on the movie file.

    Nothing appears in the Embed Adobe Story Script Meta Data field.

    2.

    I click on Analyze and the box integrate Adobe Story Script script remains greyed out (impossible to select)

    If I click on analyze then PP will analyze the script (does a decent job) but this isn't what I want.  I want to join the script verbatim in the video, that's why I've transcribed.

    3.

    Right click on the movie file in the PP and the context menu allows me to attach a script.

    I find my .astx file downloaded on my Mac and select it.

    Still nothing appears in the field to incorporate Adobe Story metadata.

    I worked with Anand of support suggested that I have post this question here.

    I don't know if there are only some Adobe models for which it works (IE script of TV, movies etc.)

    He suggested that this would probably work only for the formats .mov file, but then discovered that it should work, even for .mp4 files.

    In any case - if anyone has any ideas, ideas, or has experience with this it would be greatly appreciated.

    Jon

    17 views Tags: first proContent the tag with premiere pro, adobe story scriptContent script adobe story, the story adobe script in first embed tag proContent tag integrate adobe story script in first pro

    Translate

    I followed the below and so that the video above, it worked for me:

    https://forums.Adobe.com/thread/1235896?TSTART=0

  • script return do not store any data info

    Hi everyone, I think I'm missing something simple but impossible to find the tail of it.

    Here is a commonly used script that I've used in the past, but since I moved to another machine its not return don't not data store news.

    My CSV is full of great info, but the column for the data store is empty.  Thanks in advance.

    $VCServerName = "myVcenter".
    $VC = to connect-VIServer $VCServerName
    $ExportFilePath = "c:\Export-VMInfo.csv".
    $Report = @)
    $VMs = get - VM
    $Datastores = get-Datastore. Select Name, Id
    $VMHosts = get-VMHost | Select Name, Parent
    {ForEach ($VM to $VMs)
    $VMView = $VM | Get-View
    $VMInfo = {} | Select VMName Powerstate, OS, file, IPAddress, ToolsStatus, host, Cluster, data store, NumCPU, MemMb, DiskGb, DiskFree, DiskUsed
    $VMInfo.VMName = $vm.name
    $VMInfo.Powerstate = $vm. PowerState
    $VMInfo.OS = $vm. Guest.OSFullName
    $VMInfo.IPAddress = $vm. Guest.IPAddress [0]
    $VMInfo.ToolsStatus = $VMView.Guest.ToolsStatus
    $VMInfo.Host = $vm.host.name
    $VMInfo.Cluster = $vm.host.Parent.Name
    $VMInfo.Datastore = ($Datastores | where {$_.}) ID-match (($vmview.)) Data store | Select - first 1) | Select the value). Value} | Select name). Name
    $VMInfo.NumCPU = $vm. NumCPU
    $VMInfo.MemMb = [math]: round (($vm.)) (MemoryMB), 2)
    $VMInfo.DiskGb = [math]: Round ((($vm.)) Hard drives | Measure-Object-CapacityKB property-sum). Summary * 1 k / 1 GB), 2)
    $VMInfo.DiskFree = [math]: Round ((($vm.)) Guest.Disks | Measure - Object - property FreeSpace-sum). Summary / 1 GB), 2)
    $VMInfo.DiskUsed = $VMInfo.DiskGb - $VMInfo.DiskFree
    $Report += $VMInfo
    }
    $Report = $Report | Sort-Object VMName
    IF ($Report - don't ' ') {}
    $report | Export-Csv $ExportFilePath - NoTypeInformation
    }
    $VC = disconnect-VIServer-confirm: $False

    Strange, I just ran your script, and I get the info from the data store in the CSV file.

    Error messages?

    I guess that Get-Datastore returns all your data warehouse?

  • AAM, which causes a loop not allowing any Adobe Apps for launch.

    I have created with the AAMEE tool CS6 Design Premium version. It is on my Builds and has been eliminated from existing machines.

    It's worked great, and I'm only having problems with one machine.

    CS6 Adobe worked fine for a few months, then one day, out of the blue, no. CS6 apps would launch, the counces icon once, the MAO comes to the dock and bounces, then they leave them and restart about 10 X in the order immediately leave and then just stop trying.

    It's bad for all users of the machine, including the root and admin.

    CS 5.5 applications all work fine.

    I gave up and uninstalled/reinstalled CS6.

    It worked for 2 days, and now it's happening again.

    I think I should ask about it. It is not a big deal to just wipe/rebuild the machine, but it of not Prefs, hiding; I tried to delete those.

    It happens to any user on the computer, this isn't a problem with the user's permissions.

    I just thought that I should get on it until it starts happening to my other 70 users who have the same build/installation.

    Someone at - he seen this before?

    Thus, after the call to Adobe technology today the machine working again.

    Basically, what he was doing was, put the filder with serialization file and the prov.xml file ontot he office.

    Open Terminal

    Dragged into the serialization file

    added to this: - tool = VolumeSerialize - provfile =

    dragged into the prov.xml file

    and press enter

    He ran and got a return Code = 0

    Now, run the applications.

    Technology is sending via the genius of make me a batch file or a patch file.

    If he says something I can run for the next time that automates this or a Patch, I'll report back.

    But this seems to solve the problem.

    I'm not a scripter, but it should be fairly easy to use ARD to place the serialization folder in the directory shared from each machine.

    Then just run a script or command of ARD or SSH re - serializes CS6.

  • Oracle Service Bus - XQuery - Transformation does not return any data

    Hello

    Firstly I appologise for the code so much but I couldn't find a better way to put it all in a single message.

    I met a very strange and difficult situation with a mapping of Xquery. I have 2 XSD (A and B below), I'm trying to map from A to B, but the result of the mapping returns with empty data (result). Has anyone encountered such a situation before? Perhaps someone could shed some light on the matter?

    Any help is very appreciated!

    Has WSDL
    <? XML version = "1.0" encoding = "UTF - 8"? >
    < s0:definitions name = "ConsultaEstadoCartaoDefinitions" targetNamespace = "http://siebel.com/loyalty/LoyaltyAccrualServices" xmlns = "" xmlns:crm = "http://www.siebel.com/xml/PCE%20Member-Card" xmlns:s0 = "http://schemas.xmlsoap.org/wsdl/" xmlns:s1 = "http://siebel.com/loyalty/LoyaltyAccrualServices" xmlns:s2 = "http://schemas.xmlsoap.org/wsdl/soap/" xmlns: XS = "http://www.w3.org/2001/XMLSchema" > "
    < s0:types >
    < xs: Schema attributeFormDefault = "unqualified" elementFormDefault = "qualified" targetNamespace = "http://siebel.com/loyalty/LoyaltyAccrualServices" xmlns: XS = "http://www.w3.org/2001/XMLSchema" >
    < xs: import namespace = schemaLocation = "CRM_ConsultaEstadoCartao.xsd" / "http://www.siebel.com/xml/PCE%20Member-Card" >
    < xs: element name = "ConsultaEstadoCartao_Input" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: element name = "ListOfPceMemberCard" type = "crm:ListOfPceMemberCard" / >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < xs: element name = "ConsultaEstadoCartao_Output" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: element name = "ListOfPceMemberCard" type = "crm:ListOfPceMemberCard" / >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < / xs: Schema >
    < / s0:types >
    < s0:message name = "ConsultaEstadoCartao_Input" >
    < item s0:part = "s1:ConsultaEstadoCartao_Input" name = 'settings' / >
    < / s0:message >
    < s0:message name = "ConsultaEstadoCartao_Output" >
    < item s0:part = "s1:ConsultaEstadoCartao_Output" name = "ListOfPceMemberCard_Output" / >
    < / s0:message >
    < s0:portType name = "ConsultaEstadoCartao" >
    < s0:operation name = "ConsultaEstadoCartao_Input" parameterOrder = 'settings' >
    < s0:input message = "s1:ConsultaEstadoCartao_Input" / >
    < s0:output message = "s1:ConsultaEstadoCartao_Output" / >
    < / s0:operation >
    < / s0:portType >
    < name s0:binding = "ConsultaEstadoCartaoSoapBinding" type = "s1:ConsultaEstadoCartao" >
    < s2:binding style = transport "document" = "http://schemas.xmlsoap.org/soap/http" / >
    < s0:operation name = "ConsultaEstadoCartao_Input" >
    < s2:operation style = "document" / >
    < s0:input >
    < s2:body pieces = use "settings" = "literal" / >
    < / s0:input >
    < s0:output >
    < s2:body pieces = use "ListOfPceMemberCard_Output" = "literal" / >
    < / s0:output >
    < / s0:operation >
    < / s0:binding >
    < s0:service name = "ConsultaEstadoCartao" >
    < s0:port binding = "s1:ConsultaEstadoCartaoSoapBinding" name = "ConsultaEstadoCartao" >
    < s2:address location = "http://localhost:7001/CartaoEscola_WS_Test/ConsultaEstadoCartao" / >
    < / s0:port >
    < / s0:service >
    < / s0:definitions >

    B XSD
    <? XML version = "1.0" encoding = "UTF-8"? >
    < schema targetNamespace = "http://pt.min-edu.cartaoescola/EAI/ConsultaEstadoCartao."
    elementFormDefault = "qualified" xmlns = "http://www.w3.org/2001/XMLSchema" xmlns:tns = "http://pt.min-edu.cartaoescola/EAI/ConsultaEstadoCartao" >
    < annotation >
    < documentation >
    Copyright (C) 2010 Novabase Consulting. All rights reserved.
    < / documentation >
    < / annotation >
    < complexType name = "CartaoComplexType" >
    <>sequence

    < element name = "NumCartao" type = "string" >

    < / item >



    < element name = "EstadoCartao" type = "string" > < / item >
    < / sequence >
    < / complexType >

    < element name = "ConsultaEstadoCartaoInput" type = "tns:consultaEstadoCartaoComplexType" > < / item >
    < complexType name = "consultaEstadoCartaoComplexType" >
    <>sequence
    < element name = "IdMensagem" type = "string" minOccurs = "1".
    maxOccurs = "1" >
    < / item >
    < element name = "Origem" type = "string" minOccurs = "1".
    maxOccurs = "1" >
    < / item >
    < element name = "card.
    Type = "tns:CartaoComplexType" minOccurs = "0".
    maxOccurs = "1" >
    < / item >
    < / sequence >
    < / complexType >


    < element name = "ConsultaEstadoCartaoOutput" type = "tns:consultaEstadoCartaoComplexType" > < / item >
    < / schema >

    Mapping of XQuery code
    (: pragma bea: global-element-OdbcParameter parameter = "$consultaEstadoCartao_Output1" element = "ns0:ConsultaEstadoCartao_Output" location =".. / CRM/CRM_ConsultaEstadoCartao4.wsdl '::))
    (: pragma bea: element global-element-return = "ns2:ConsultaEstadoCartaoOutput" location = "EAI_ConsultaEstadoCartao.xsd" ::))

    declare namespace ns2 = "http://pt.min-edu.cartaoescola/EAI/ConsultaEstadoCartao";
    declare namespace ns1 = "http://www.siebel.com/xml/PCE%20Member-Card";
    declare namespace ns0 = "http://siebel.com/loyalty/LoyaltyAccrualServices";
    declare namespace xf = "http://tempuri.org/OSB%20Project%20CartaoEscola%20Consulta%20Estado%20Cart ao/EAI/temp /";

    declare function xf:temp ($consultaEstadoCartao_Output1 as element (ns0:ConsultaEstadoCartao_Output))
    {element (ns2:ConsultaEstadoCartaoOutput)}
    < ns2:ConsultaEstadoCartaoOutput >
    < ns2:Cartao >
    < ns2:EstadoCartao > {data($consultaEstadoCartao_Output1/ns0:ListOfPceMemberCard/ListOfLoyMembershipCard/LoyMembershipCard[1]/CardStatusCode)} < / ns2:EstadoCartao >)
    < / ns2:Cartao >
    < / ns2:ConsultaEstadoCartaoOutput >
    };

    declare the external variable $consultaEstadoCartao_Output1 as element(ns0:ConsultaEstadoCartao_Output);

    XF:temp ($consultaEstadoCartao_Output1)


    Test data
    <? XML version = "1.0"? >
    < ns0:ConsultaEstadoCartao_Output xmlns:ns0 = "http://siebel.com/loyalty/LoyaltyAccrualServices".
    xmlns:ns1 = "http://www.siebel.com/xml/PCE%20Member-Card" >
    < ns0:ListOfPceMemberCard >
    < ns1:ListOfLoyMembershipCard >
    < ns1:LoyMembershipCard >
    < ns1:CardNumber > CardNumber_1 < / ns1:CardNumber >
    < ns1:CardStatusCode > CardStatusCode_1 < / ns1:CardStatusCode >
    < / ns1:LoyMembershipCard >
    < / ns1:ListOfLoyMembershipCard >
    < / ns0:ListOfPceMemberCard >
    < / ns0:ConsultaEstadoCartao_Output >

    Result
    < ns2:ConsultaEstadoCartaoOutput xmlns:ns2 = "http://pt.min-edu.cartaoescola/EAI/ConsultaEstadoCartao" >
    < ns2:Cartao >
    < ns2:EstadoCartao > < / ns2:EstadoCartao >
    < / ns2:Cartao >
    < / ns2:ConsultaEstadoCartaoOutput >

    Thank you

    Adel

    Hi Alex,

    I'm not quite sure what could have caused the problem - if the problem recurs, then this is probably a bug; If not, one of these things... :)

    Kind regards
    Yohanna.

  • 'Improved' TB does not allow me to copy and paste from Word you can solve the problem?

    With the wonderful Thunderbird new and improved, I can not copy and paste Word text in an email because when I try, it has no line breaks. How can I fix?

    CTRL + SHIFT + V paste unformatted text.

    My guess is that Word is wrapping the text in a table to make it look exactly as it did in word.

Maybe you are looking for