Embedded object stripped message

I want to send an html email with an embedded video. I have created a web page on my server with the embedded video object. When i open the webpage in Safari to displays correctly. When I chose email contents of this webpage from Safari it creates an email with the embedded object (video) and the video plays.
When the message is saved (sent or draft) the embedded object is stripped from the message.
Here is the source for the webpage:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
<html>
<head>
<title></title>
</head>
<body>
<object width="480" height="378"> <param name="movie" value="http://content.screencast.com/users/Michael_Teel/folders/Default/media/7 5bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/flvplayer.swf"></param> <param name="quality" value="high"></param> <param name="bgcolor" value="#FFFFFF"></param> <param name="flashVars" value="thumb=http://content.screencast.com/users/MichaelTeel/folders/Default/media/75bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/FirstFrame.jpg&w idth=480&height=378&content=http://content.screencast.com/users/MichaelTeel/folders/Default/media/75bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/Jacob-iPhone.m4v "></param> <param name="allowFullScreen" value="true"></param> <param name="scale" value="showall"></param> <param name="allowScriptAccess" value="always"></param> <param name="base" value="http://content.screencast.com/users/Michael_Teel/folders/Default/media/7 5bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/"></param> <embed src="http://content.screencast.com/users/Michael_Teel/folders/Default/media/75b dd08b-7a5a-4f81-82a3-80fe7d8dcaad/flvplayer.swf" quality="high" bgcolor="#FFFFFF" width="480" height="378" type="application/x-shockwave-flash" allowScriptAccess="always" flashVars="thumb=http://content.screencast.com/users/MichaelTeel/folders/Default/media/75bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/FirstFrame.jpg&w idth=480&height=378&content=http://content.screencast.com/users/MichaelTeel/folders/Default/media/75bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/Jacob-iPhone.m4v " allowFullScreen="true" base="http://content.screencast.com/users/Michael_Teel/folders/Default/media/75 bdd08b-7a5a-4f81-82a3-80fe7d8dcaad/" scale="showall"></embed> </object>
</body>
</html>
How can I send this video so that it plays within the email?

What is it about this embedding code that cause mail to reject or strip it out. When I send other web pages that include embedded video content they are not stripped out so it must be something in the code above that Mail doesn't like.
Anyone have a clue?

Similar Messages

  • Trex error: No embedded object found in document (Errorcode 14037)

    Hi,
    we have following problem with our crawler:
    in the crawler 50 % of documents are returning the error "No embedded object found in document (Errorcode 14037)" and are not displayed in the trex monitor. All other documents are indexed correctly an are in the trex monitor in "OK".
    We are on Stack 14 Patch 4.
    Regards,
    Gerhard

    Hi Gerhard,
    Typically, errors codes 14XXX are related to filter problems during the preprocessing of documents. Details about TREX error codes are explained in the help portal and in the note 898404.
    Unfortunatelly, filter problems could not be easily fixed. However, a good starting point would be to use a newer TREX release. If this doesnt help please open a Customer Message and attach documents, which causes the mentioned error. Please attach only not sensible documents!
    Kind regards,
    Roland

  • Custom Mapping: Storing embedded objects to column of Oracle Object type

    Hello,
    How hard in your opinion it would be to write custome mapping to store an
    embedded object which only have simple fields in it (no references to other
    persistent classes) to oracle object column. What superclass is the best for
    the job?
    Simplest approach I see is to define "none" mapped class for my embedded
    object and use transformation mapping to do the job
    What if I need to reference other persistent objects in my embedded one - do
    you think it will make any difference?
    Thank you for your assistance
    Alex

    overriding loadProjection() took care of this issue
    "Alex Roytman" <[email protected]> wrote in message
    news:cjslsb$uo6$[email protected]..
    Looks like transform mapping would not work - Kodo does not support object
    mappings (use stream instead) or I am missing something?
    "Alex Roytman" <[email protected]> wrote in message
    news:cjshqv$ref$[email protected]..
    Hello,
    How hard in your opinion it would be to write custome mapping to store an
    embedded object which only have simple fields in it (no references to
    other persistent classes) to oracle object column. What superclass is the
    best for the job?
    Simplest approach I see is to define "none" mapped class for my embedded
    object and use transformation mapping to do the job
    What if I need to reference other persistent objects in my embedded one -
    do you think it will make any difference?
    Thank you for your assistance
    Alex

  • Problem with embedded objects

    Hi,
    I have problem with embedded objects which contained embedded objects.
    When I create an Object in the persistent memory and commit this object I get the following error:
    ORA-22805: cannot insert NULL object into object tables or nested tables
    In the constructor of my persisten object I create the embedded members in the transient memory:
    ATestPersObj::ATestPersObj() : m_count(0), m_lang(NULL), m_cost(NULL) {
      m_lang = new AEnumLanguage_OraType();
      m_cost = new AAmount_OraType();
    }Or when I dereference a reference I get this error:
    ORA-00600: internal error code, arguments: [kokeicadd2], [16], [5], [], [], [], [], []
    Can somebody give me a hint?
    I've defined the following Type:
    CREATE OR REPLACE TYPE AENUM_ORATYPE AS OBJECT (
                             VALUE  NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE AENUMLANGUAGE_ORATYPE UNDER AENUM_ORATYPE (
                           ) FINAL " );
    CREATE OR REPLACE TYPE ACURRENCY_ORATYPE AS OBJECT (
                             ISONR          NUMBER(5,0)
                           ) FINAL ;
    CREATE OR REPLACE TYPE AAMOUNT_ORATYPE AS OBJECT (
                             CCY        ACURRENCY_ORATYPE,
                             LO32BITS   NUMBER(10,0),
                             HI32BITS   NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE ATESTPERSOBJ AS OBJECT (
                             COUNT    NUMBER(4),
                             LANG     AENUMLANGUAGE_ORATYPE,
                             COST     AAMOUNT_ORATYPE   
                           ) FINAL ;
    oracle::occi::Ref<ATestPersObj> pObjR = new(c.getConnPtr(), "TTESTPERSOBJ") ATestPersObj();
    pObjR->setCount(i+2001);
    pObjR->setLang(AEnumLanguage(i+1));
    pObjR->setCost(AAmount(ACurrency(), 2.5));
    c.commit();
    c.execQueryRefs("SELECT REF(a) FROM TTESTPERSOBJ a", persObjListR);
    len = persObjListR.size();
    {for (int i = 0; i < len; i++) {  
      oracle::occi::Ref<ATestPersObj> pObjR = persObjListR;
    pObjR->getCount();
    pObjR->getLang();
    c.commit();
    With kind regards
    Daniel
    Message was edited by:
    DanielF
    Message was edited by:
    DanielF

    Hi,
    I have problem with embedded objects which contained embedded objects.
    When I create an Object in the persistent memory and commit this object I get the following error:
    ORA-22805: cannot insert NULL object into object tables or nested tables
    In the constructor of my persisten object I create the embedded members in the transient memory:
    ATestPersObj::ATestPersObj() : m_count(0), m_lang(NULL), m_cost(NULL) {
      m_lang = new AEnumLanguage_OraType();
      m_cost = new AAmount_OraType();
    }Or when I dereference a reference I get this error:
    ORA-00600: internal error code, arguments: [kokeicadd2], [16], [5], [], [], [], [], []
    Can somebody give me a hint?
    I've defined the following Type:
    CREATE OR REPLACE TYPE AENUM_ORATYPE AS OBJECT (
                             VALUE  NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE AENUMLANGUAGE_ORATYPE UNDER AENUM_ORATYPE (
                           ) FINAL " );
    CREATE OR REPLACE TYPE ACURRENCY_ORATYPE AS OBJECT (
                             ISONR          NUMBER(5,0)
                           ) FINAL ;
    CREATE OR REPLACE TYPE AAMOUNT_ORATYPE AS OBJECT (
                             CCY        ACURRENCY_ORATYPE,
                             LO32BITS   NUMBER(10,0),
                             HI32BITS   NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE ATESTPERSOBJ AS OBJECT (
                             COUNT    NUMBER(4),
                             LANG     AENUMLANGUAGE_ORATYPE,
                             COST     AAMOUNT_ORATYPE   
                           ) FINAL ;
    oracle::occi::Ref<ATestPersObj> pObjR = new(c.getConnPtr(), "TTESTPERSOBJ") ATestPersObj();
    pObjR->setCount(i+2001);
    pObjR->setLang(AEnumLanguage(i+1));
    pObjR->setCost(AAmount(ACurrency(), 2.5));
    c.commit();
    c.execQueryRefs("SELECT REF(a) FROM TTESTPERSOBJ a", persObjListR);
    len = persObjListR.size();
    {for (int i = 0; i < len; i++) {  
      oracle::occi::Ref<ATestPersObj> pObjR = persObjListR;
    pObjR->getCount();
    pObjR->getLang();
    c.commit();
    With kind regards
    Daniel
    Message was edited by:
    DanielF
    Message was edited by:
    DanielF

  • How do I change colour profile of embedded objects?

    One of my Illustrator CS6 documents was intially created some time ago without paying much attention to colour management issues. I am now trying to put that right and have assigned the document a profile of Adobe RGB (i998). However, each time I open it I am warned that 'The document has an embedded color profile that does not match the current RGB working space'. It also says that the embedded profile is sRGB, while my working space is Adobe RGB. I get this message three times and am assuming that it refers to embedded objects.
    So far, I have failed to find a permanent solution. Do I have to reimport all items that may have a colour profile, having first ensured that they are tagged as AdobeRGB?
    David

    Hi Monika,
    First of all, let me apologise for using the word 'embedded' instead of 'linked'. I was distracted by the fact that the doc in question (an award certificate) is embedded in a Microsoft Access report. That being said, I have now found that all the linked logo images in this Illustrator doc are GIFs or TIFs that don't accept a colour profile (and thus cannot be the trigger for my profile warnings).
    I use a Canon 5D and (rightly or wrongly) have chosen to standardise on a CS working space of Adobe RGB. However, your reference to digital photos is not relevant in this case as there are none in the document. My only concern is to make this document match my working space and no longer trigger irritating profile mismatch warnings. My overall objective is to ensure that the colours will all be correct when it goes to a printer (one of our sponsors, a UK colour paper manufacturer, will be printing the final certificates from a PDF file).
    David

  • Applescript problems with character offsets and embedded objects in Pages

    https://discussions.apple.com/thread/2550810?start=0&tstart=0
    The above discussion is archived, but I've noticed a problem witht he solution it proposes.
    Essentially, the problem seems to be that the character offset of a selection becomes either inaccessible or out of sync when embedded objects are present in the file.
    The following document can be used to demonstrate:
    http://images.apple.com/support/pages/docs/ePub_Best_Practices_EN.zip
    I've slightly modified the script fromt he previous thread, so here's my own script:
    tell front document of application "Pages"
              set C to character offset of (get selection)
              set N to 0
              repeat with P in (get character offset of paragraphs)
                        if P > C then exit repeat
                        set N to N + 1
      select paragraph (N + 1)
              end repeat
              N
    end tell
    This script is supposed to select the next paragraph in a document, when given a selection. The intention is to call it recursively to get each paragraph of the document in turn.
    At the start of the document, it functions correctly, however when it gets to the embedded pictures, lines and table of contents, things start to break. This wouldn't be so bad, because I could simply ignore paragraphs that contains those embedded objects, but the real problems arise in the normal text below these objects.
    If you place the cursor on the 3rd page of that document, in an ordinary paragraph, for example, this script will simply return the same paragraph over and over. The reason for this is that the character offset of the paragraphs is being thrown off, so the if statement gets hit too early. You can also see this if you look at the character offsets of the word "Introduction" in the heading at the top of the 3rd page. You'll notice that the character offset is duplicated for a couple of letters, and is out of sync with the index of the character itself.
    What I need is a script that will take a selection (of any type), and simply return the correct index of the paragraph containing it every time. It doesn't seem like a difficult thing to do, and since the paragraphs are accessible by index, they should be able to return their index to the user. I have a feeling Apple need to add this functionality to the Pages Applescript dictionary, and they definitely need to fix the bug where the character offsets go out of sync after embedded objects. These are really quite bad problems.

    Hi,
    Pierre L. wrote:
    I have tested it with the document referred to by andyboyd. When the first word (“Introduction”) of the first paragraph of page 3 is selected, your script returns {10}, while it returns {12} when the second word (“to”) of the same paragraph is selected.
    Message was edited by: Pierre L.
    Thanks Pierre.
    Ok, the error is that I mixed the variable N and N1, during the renaming of variables
    return N - 1  must be return N1 - 1 -- return the index
    Here the corrected script :
    set indexList to my getIndexOfLinesInSelection()
    on getIndexOfLinesInSelection()
       script o
          property parOffsetList : {}
          on getIndex(C)
             tell application "Pages" to tell front document
                set parOffsetList to character offset of paragraphs
                set tc to count parOffsetList
                repeat with N from 1 to tc
                   if N = tc then return tc -- it's the last paragraph
                   if (item N of parOffsetList) > C then
                      set N1 to N
                      repeat -- check the  character offset of the selected line
                         if N1 = tc then return tc -- it's the last paragraph
                         select paragraph N1 -- select next paragraph
                         set sel to (get selection)
                         if class of sel is list then
                            repeat with aItem in sel --  this line contains text and object
                               try
                                  if character offset of first character of aItem > C then return N1 - 1 -- return the index
                                  exit repeat -- else  character offset of the selection <= C , exit the repeat
                               end try -- error,aItem is not valid, continue the repeat
                            end repeat
                         else
                            try
                               if (character offset of first character of sel) > C then return N1 - 1 -- return the index
                            end try
                         end if
                         set N1 to N1 + 1
                      end repeat
                   end if
                end repeat
             end tell
          end getIndex
       end script
       tell application "Pages" to tell front document
          set sel to (get selection)
          if class of sel is list then -- selection contains object or  (Non-Continuous selection in the same line or in  différents lines).
             set charOffsetList to {}
             repeat with aItem in sel
                try
                   set end of charOffsetList to (character offset of aItem) -- get character offset of  the  valid item
                end try
             end repeat
          else -- insertion point or  the first line in continous text selection
             set charOffsetList to {character offset of sel}
          end if
          if charOffsetList is {} then return {} --  no valid item in the selection
          set indexList to {}
          repeat with C in charOffsetList
             set r to o's getIndex(C)
             if r is not in indexList then set end of indexList to r
          end repeat
          return indexList
       end tell
    end getIndexOfLinesInSelection

  • Embedded objects when converting a word document

    Hello ng,
    a word document contains other documents as embedded objects shown as a symbol. When converting this document with Acrobat Standard or Professional the symbols are converted as non functional picture. So the embeddes document can't be opened.
    So here's my question: Is it possible to convert embedded objects shown as symbol to functional embedded object within PDF?
    Example is shown below.
    Many thanks!
    Susanne

    It cannot be done. For all intents remember that creating the pdf is akin to printing the document out. If you were to print document to your printer, you would not expect to be able to click on the paper to launch the object. Now it is true that one can have things like hyperlinks preserved, but specialized coding was created for this functionality and is not available in all applications nor on all platforms. However, your wish is a reasonable feature request. I suggest you might ask here:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Mail in 0S 10.8 can't open web links embedded in mail message

    Mail in OS 10.8 can't open web links embedded in mail messages. Just started this AM but I changed nothing.

    Please don't post here about beta software. There are confidential forums set aside for developers to use. Developer Forums. If you are a paid developer or seed tester then it's a violation of your NDA to post in these forums. If you aren't a developer or seed tester then you have an illegal copy.

  • Custom Renderer / Embedded Objects

    In looking over the developer's guide, it suggests that one would have to create a custom XML renderer to handle deep structured documents (i.e., embedded objects). Is my reading of the renderer chapter correct?
    Thanks in advance.

    Check out the technical brief on a XSL Renderer sample application at:
    http://technet.oracle.com/products/ifs/

  • The requested action is not supported for this object. [message 131-171]

    Hi,
    One user is having the below error message appear when she attempts to print remittances. This has only started happening since yesterday and all other documents are still printing.
    "The requested action is not supported for this object. [message 131-171]"
    Any ideas what could be the problem?
    Regards,
    Mohan

    Hi Johnson,
    I have not tried your suggestion till now as I am waiting for the database copy from my client.
    Just a quick question, As I already mentioned earlier and I also keep getting the issues from the users reporting that the user's get this error only if they print 'remittance advise reports' has multiple invoices.
    The report prints fine if it has single invoice even if it is a check payment.
    Will your suggestions address this as well?
    Regards,
    Mohan

  • Accessing links embedded in email messages fails on an iPad

    Our iPad 2 can't open web links embedded in email messages from NY Times, Alternet, and other sites. Error messages is "Website is not available" or "Can't access server". Internet access works otherwise. Problem is the same regardless of whether IOS Gmail app or Apple Mail app is used. It also doesn't seem to matter which browser is used (we've tried Chrome and Safari).

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • "Object Locked" message - but nothing is locked

    I keep getting the "object locked" message when I try to edit text or add pages (using CS6). Nothing is locked though; no objects, no layers, and it's not on a master. The document usually crashes shortly after this message pops up. Help please!
    Thanks

    Yes I did.
    Thanks, exporting to idml has helped with removing pages. I am still getting the "object locked" message randomly. It hasn't happened yet today though so hopefully I can just power through.
    Thanks for your help!

  • Agent Determination: Responsibilities - No objects found Message no. 5A244

    I'm trying to create a responsibility with Object abbr. MATKL_001, but when I enter I get error message as in subject line.

    Thanks Susan for your reply
    The transaction is PFAC_CHG - Change Rules for Agent Assignment. Within tab "Responsibilities" I'm trying to "Create" a responsibility but then get error No objects found Message no. 5A244 when I enter Object abbr. "MATKL_001". I'm just not sure where this ties up?
    The Object Abbreviation "Contains an abbreviation of up to 12 characters. The abbreviation represents, or identifies, a specific object (for example, an organizational unit). Objects may also be identified by the object ID." I'm trying to add a rule with responsibilities for Material Group, but I'm not sure how this all ties up. Do I have to create for instance an HRP1000 object entry for object type Material Group before performing this step? And how to do this? Also, which object type should be used?
    p.s. ST05 system trace produced access list to the following tables: DD01L, NRIV,PLOGI, HRP1000, UST12, DD08L, HRSOBJECT, DD05S, HRS1000, TBPROGREF, HRS1002, HRS1203, TADIR, TDEVC, TBD72, TLOCKCIO, TLOCK, E070, TMSCSYS, TMSPVERS, TMSPCONF, TADIR, TDEVC, D020T, HRP1240
    Best regards,
    Adrian

  • Expected a dict object error message

    When attempting to open a PDF file in Reader sometimes get the "Expected a dict object" error message.

    Did you ever find the answer to this problem??  I am having the same problem with
    my Acrobat 9 Pro document.  When trying to insert a page to the document (300 pages long) I get the error message "expected a dict object
    Would appreciate any tips you can give me.

  • How to create Object related messages using cl_bsp_wd_message_service?

    Hi Gurus,
    Can any ony explain how to create the object related messages using add_message method of cl_bsp_wd_message_service?
    Thanks,
    Murali.

    Hi Murali,
    Check the below code .. hope it helps..
      DATA lr_msg_service     TYPE REF TO cl_bsp_wd_message_service.
      DATA lr_exception       TYPE REF TO cx_root.
      DATA lr_rtti            TYPE REF TO cl_abap_objectdescr.
      DATA lv_msg_type        TYPE        symsgty.
      DATA lv_msg_id          TYPE        symsgid.
      DATA lv_msg_number      TYPE        symsgno.
      DATA lv_msg_v1          TYPE        symsgv.
      DATA lv_msg_v2          TYPE        symsgv.
      DATA lv_msg_v3          TYPE        symsgv.
      DATA lv_msg_v4          TYPE        symsgv.
      DATA lv_msg_level       TYPE        bsp_wd_message_level.
      DATA lr_verification    TYPE REF TO if_bsp_wd_message_handler."#EC NEEDED
      DATA lv_important_info  TYPE        abap_bool.
      DATA lv_exc_prog_name   TYPE        syrepid.
      DATA lv_exc_incl_name   TYPE        syrepid.
      DATA lv_exc_src_line    TYPE        i.
      lr_exception = ir_exception.
    drill down to first exception
      WHILE lr_exception->previous IS BOUND.
        lr_exception = lr_exception->previous.
      ENDWHILE.
      lr_rtti ?= cl_abap_typedescr=>describe_by_object_ref( p_object_ref = lr_exception ).
      lr_exception->get_source_position( IMPORTING program_name = lv_exc_prog_name
                                                   include_name = lv_exc_incl_name
                                                   source_line  = lv_exc_src_line ).
    prepare message
      lr_msg_service = cl_bsp_wd_message_service=>get_instance( ).
      lv_msg_type   = if_genil_message_container=>mt_warning.
      lv_msg_id     = 'CRM_IC_APPL'.
      lv_msg_number = '003'.
      lv_msg_v1     = lr_rtti->get_relative_name( ).
      lv_msg_v2     = ir_exception->get_text( ).
      lv_msg_v3     = lv_exc_incl_name.
      lv_msg_v4     = lv_exc_src_line.
      lv_msg_level  = '9'.
    add message to error log
      lr_msg_service->add_message(
          iv_msg_type       = lv_msg_type
          iv_msg_id         = lv_msg_id
          iv_msg_number     = lv_msg_number
          iv_msg_v1         = lv_msg_v1
          iv_msg_v2         = lv_msg_v2
          iv_msg_v3         = lv_msg_v3
          iv_msg_v4         = lv_msg_v4
          iv_msg_level      = lv_msg_level
          iv_verification   = lr_verification
          iv_important_info = lv_important_info ).
    Regards,
    Raghu

Maybe you are looking for

  • DIscoverer output different from toad

    Hi I have an apps mode EUL (Discoverer 10.1.2.2 , EBS R12 and Oracle 11g database) I have a custom folder for onhand material analysis. The output will be something like below Item Onhand Batch Start Date Requirement for this batch Net-Onhand ABC 100

  • I am a  recent Apple convert and feel like I have been ripped off

    I purchased a 13inch MacBook since I was getting a little bit tired of having to constantly reboot my PC. Bought a 13 inch MacBook in Nov 2008. Since this was my first Mac and did not have any other accessories/sofware etc from the pc world, I invest

  • Question about Nexus 7010.

    Hello everybody, Just a quick question, how do you restore a running-config (or a Nexus .bin file) to a Nexus 7010. Is it thesame process as the IOS base scenario. Please explain and help. Thank you in advance. --chie                  

  • Where is the backup dialog on the import image pane in lr5.6

    There used to be the ability to backup your images in lr5.5 during import. I still have it in windows but its gone on my mac?

  • Spry Image Slideshow Sizing

    The default sizes interfere with the rest of my css page layout.  I want to restrict the width of the display to 600px.  Where do I need to alter code please?