Email body [Tags] that work ?

Is there a list of the metadata tags that work in email body text anywhere?
Which tags like [Title] etc will parse to the correct metadata when sending mail directly out?
Ta
J

Only sometimes the content of a field never becomes visible, even when you follow mattbodmans suggestion; see this thread:
http://discussions.apple.com/thread.jspa?threadID=2292088&tstart=0
I've been thinking: Is it important how devices are defined: 'Device is master' versus 'Final Cut Server is master'? Could this have effect on the content of the fields?
Or should there be some mapping?
Henk Rek

Similar Messages

  • Email body is not working

    I cannot type in the body of an email and anything that I forward is blank.  It doesn't matter if I am writing a new email or replying.  I recently updated safari.  The weird thing is, I have had this problem for over a week now and the other day, my husband wrote an email on my mac and sent it.  It worked once but now he can't write in the email body either!  Any ideas?  I have already had a diasgnostic check done by my internet provider and they said everything is ok on their end.  BTW, I have a 2006 IMAC 17"  OS X 10.6.8 that I upgraded to snow leopard a few months ago.
    HELP!!!!!!!!!!

    I notice that iPhone does not support any Chinese characters in its email interface.
    If you mean that you cannot read the text of emails in Chinese, I suspect that is because these emails fail to follow the required international encoding standards. Are there no emails which display correctly? I can send you tests if you want.
    The iPhone mail program currently lacks the ability to manually correct for errors by the sender which is normally possible on a full computer.
    I also notice Safari support Chinese character in email Subject line but not in the email body.
    This would probably happen because of bad webmail encoding practices by the sender. Surely you can can read normal Chinese webpages without problems, right? Again the iPhone Safari lacks the abililty to correct for sender errors at this stage.
    Is somebody working on Chinese Character display in email interface?
    I don't know if they will implement corrections for senders that don't follow international standards, if that is the problem. This forum is just other users, so make sure you tell Apple what you want via feedback:
    http://www.apple.com/feedback/iphone.html

  • Developerproblem: i cant get the onkeyup event to work on the body tag in firefox how can i do this? this used to work in previous versions of firefox

    i made an application using DOM and i am using extensively keyup events in the body tag
    in previous versions of firefox this was working fine
    but now it doesnt
    events that do not work for body tags that i have used are
    onKeypress
    onKeydown
    how ever the event does fireup if the html element are of input types (e.g. textboxes, images, etc)
    how do i address this problem?

    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • Help! BC-Muse : Custom Code before closing Body tag

    I have a  project that is ongoing am constantly updating and publishing from Muse. I also have a custom code that is inserted before the closing body tag that I can't place in Muse (Because the feature is not supported). Every time I publish in Muse I lose this code because Muse will override the page always. So I have to go the code section in BC for the page and reinsert the code. This is giving me headache and stress on my back and sight.
    How can I permanently place  this code before the closing body tag once without the stress mentioned earlier and without Muse re-writing the code for that specific page (I used to think Muse publish edited pages and not the entire site, even when the option to publish 'only modified pages is selected'). Please HELP!

    Thanks Zak, this is the code:
      <script>
    $('#pdropdown').change( function() {
    $('#pdetails>*:not(.hide)').toggleClass('hide');
    var optionVal = $(this).val();
    $('#'+optionVal+'.hide').toggleClass('hide');
    </script>
    I have a web app that loads product list into a dropdown list. (How I wish we had a dropdown list form in Muse that can work with BC web app or a drop down list that can be use to target a specific  widget ID.) Maybe its time Muse widgets have ID so we can target them to appear by fading in, sliding in, etc.)

  • Library item inserts erroneous body tags?!

    When inserting a library item that contains xsl: tags, it
    adds body tags that aren't in the original library item.
    For instance, here's a sample of library item text that
    contains xsl: markup:
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8">
    <xsl:if test="$language='en'">
    <xsl:text>    |    </xsl:text>
    <xsl:element name="a">
    <xsl:attribute
    name="href">SomeFile.html</xsl:attribute>
    <xsl:call-template name="getLocaleString">
    <xsl:with-param name="key" select="'key'"/>
    <xsl:with-param name="lang" select="$locale"/>
    </xsl:call-template>
    </xsl:element>
    </xsl:if>
    And here is the result of applying it to an html file:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <!-- #BeginLibraryItem "/Library/test-xsl-li.lbi" -->
    <body ><body ><xsl:if
    test="$language='en'">
    <xsl:text>    |    </xsl:text>
    <xsl:element name="a">
    <xsl:attribute
    name="href">SomeFile.html</xsl:attribute>
    <xsl:call-template name="getLocaleString">
    <xsl:with-param name="key" select="'key'"/>
    <xsl:with-param name="lang" select="$locale"/>
    </xsl:call-template>
    </xsl:element>
    </xsl:if><!-- #EndLibraryItem -->
    </body>
    </html>
    Anybody have a clue on what is going on here and how to stop
    it?
    Nathan

    I assume you are using DWCS3? Post the steps to reproduce
    this and let's
    see what happens....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Nathan Whelchel" <[email protected]> wrote
    in message
    news:[email protected]...
    > When inserting a library item that contains xsl: tags,
    it adds body tags
    > that
    > aren't in the original library item.
    >
    > For instance, here's a sample of library item text that
    contains xsl:
    > markup:
    >
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8">
    > <xsl:if test="$language='en'">
    >
    <xsl:text>    |    </xsl:text>
    > <xsl:element name="a">
    > <xsl:attribute
    name="href">SomeFile.html</xsl:attribute>
    > <xsl:call-template name="getLocaleString">
    > <xsl:with-param name="key" select="'key'"/>
    > <xsl:with-param name="lang" select="$locale"/>
    > </xsl:call-template>
    > </xsl:element>
    > </xsl:if>
    >
    > And here is the result of applying it to an html file:
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <title>Untitled Document</title>
    > </head>
    > <body>
    > <!-- #BeginLibraryItem "/Library/test-xsl-li.lbi"
    -->
    > <body ><body ><xsl:if
    test="$language='en'">
    >
    <xsl:text>    |    </xsl:text>
    > <xsl:element name="a">
    > <xsl:attribute
    name="href">SomeFile.html</xsl:attribute>
    > <xsl:call-template name="getLocaleString">
    > <xsl:with-param name="key" select="'key'"/>
    > <xsl:with-param name="lang" select="$locale"/>
    > </xsl:call-template>
    > </xsl:element>
    > </xsl:if><!-- #EndLibraryItem -->
    > </body>
    > </html>
    >
    >
    > Anybody have a clue on what is going on here and how to
    stop it?
    >
    > Nathan
    >

  • Can anyone that works wirth xml in InDesign help me

    I am trying to create a schema to get an Excel workbook into xml so I can take that information and make a member list in inDesign CS6 so I don't have to type it by hand. This is the schema:
    <?xml version="1.0"?>
    <schema xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance">
    <element name="memberList">
        <member>
            <lastname>LastName</lastname>
            <firstname>FirstName</firstname>
            <phone>555-555-5555</phone>
            <streetaddress>streetaddress</streetaddress>
            <city>City</city>
            <state>State</state>
            <zipcode>Zip code</zipcode>
            <email>email</email>           
        </member>
    </element>
    </schema>
    When I bring the schema into Excel, everything seems to be fine except that the top of the tree is wrong in excel. memberList is nott at the top ot the tree. When I pull it over to populate the cells I get no names but when i click on the cell it highlights the proper name in the tree.
    Schema
         element
              name
         member
              lastname
              firstname
              phone
              streetaddress
              city
              state
              zipcode
              email
    Can anyone that works wirth xml in inDesign help me

    I typically get XML from a database, or an Excel sheet without the troublesome XML mapping. Once I simply received an Access database. Access spits out XML in a mostly usable state.
    I use an XML editor that converts the Excel sheet to XML, do any needed transformations, search and replaces, etc in the editor, then save it as an XML I use in ID. The editor is XML Blueprint. I often do other manipulations using UltraEdit as I have long used it for programming and am comfortable with it.
    I did a test in Excel's requisite mapping and found it so cumbersome I didn't successfully get it to export in the 20 minutes it took me to try it. I suspect I could do it with more head scratching but I don't have much hair left.
    But I'll give it another try later today or tonight and see if I can help in the way you want to go about it.
    Take care, Mike

  • Click Tag not working

    I am very new to Flash. I used a pre-exisitng file to create mine. The previous Click Tag worked fine, but this publication gave me a new one to use:
    on (release) {
    if (_root.clickTAG.substr(0,5) == "http://www.google.com") {
       getURL(_root.clickTAG, "_blank");
    i inserted the google URL to test and it does nothing.
    this is the click tag that worked fine:
    on(release){
    getURL("http://www.google.com", "_blank");
    Any advice?

    If the top set of code is what you are using, the conditional might be what's failing to allow the command to work...
    if (_root.clickTAG.substr(0,5) == "http://www.google.com") {
    The substr method you use will be creating a string that only has 5 characters in it, starting with the first, so chances are you need to use...
    if (_root.clickTAG.substr(0,5) == "http:") {

  • How to create email message filter that will AND multiple keywords in the message body

    Greetings,
    I am using BlackBerry Desktop Manager (version 4.3.0.17) and I need a filter that will match ALL keywords in the body of a note rather than ANY one of a list of keywords. I understand that separating keywords with a semicolon will match on any one of them, but I would like to match on ALL keywords that may be interspersed throughout the body of the email. In other words, I understand that the semicolon works like an OR connector. I need a connector that works like an AND.

    Hi bik,
    >> how to use the F keys to apply the tagging mentioned below and the direction of how to do the tagging and make the tag invisible in a text editor but not the text file. 
    It is unclear to me. Like you mentioned F keys, how does it work for?  And Could you show us some code with a simple sample or a capture? It could be better to help us understand more.
    In addition, I found a related thread
    Tag editing in a WPF TextBox. Not sure if it is useful for you. Thanks.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Insert XML Tags in BPEL Email body

    Hi All,
    in one of bpel process we are inserting Xml message in the email body. but in the email all message is coming without start and end tags.
    lets say my xml meaasage is *<name>test</name>*
    the output iam getting in the mail is test
    we cannot use mime type 'text/plain',bcz we are inserting this xml message in html template.
    is there any way to send xml message in the email body?
    Any help would be appreciate...
    Thanks,
    Sudhakar.m

    Hi
    Thanks for the reply.
    Currently we are using same way as you mentioned ,that still not working.the mail is coming without xml tags.
    is there any workaround for this issue??
    Regards,
    Sudhakar.M

  • Unbalanced Body Tag on a line that doesn't exist

    I'm receiving an unbalanced body tag error on line 129 and
    line 194, however these two lines don't exist in the template
    ALSO, whenever I create new pages from the template it
    automatically tries to save the new pages as .dwt and places them
    in the templates folder instead of the chosen format of html.
    Please advise. (see code attached)

    > I'm receiving an unbalanced body tag error on line 129
    and line 194,
    > however
    > these two lines don't exist in the template
    This definitely means your page is scrambled.
    > ALSO, whenever I create new pages from the template it
    automatically tries
    > to
    > save the new pages as .dwt and places them in the
    templates folder instead
    > of
    > the chosen format of html.
    This REALLY definitely means your page is scrambled. Are you
    using FILE |
    New From Template when you create these new pages?
    Looking at the code below, I can see several anomalies.
    1. There is this unnecessary line - <!-- TemplateInfo
    codeOutsideHTMLIsLocked="false" -->. Why is it there?
    2. There is NO editable region around the <title> tag.
    3. There is NO editable region in the head of the page in
    addition to #2,
    above.
    These last two are the sign of an improperly made template.
    Do this -
    Create a new page (Basic HTML).
    Use FILE | Save as Template....
    Look at the code in the head region of the page, particularly
    the editable
    region around the <title> tag, and the other editable
    region in the head
    called "head".
    Make your template file look like that.
    Always use FILE | Save as Template when you create your
    templates and you
    won't have this problem again.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Treasure" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm receiving an unbalanced body tag error on line 129
    and line 194,
    > however
    > these two lines don't exist in the template
    >
    > ALSO, whenever I create new pages from the template it
    automatically tries
    > to
    > save the new pages as .dwt and places them in the
    templates folder instead
    > of
    > the chosen format of html.
    >
    > Please advise. (see code attached)
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    >
    > <head>
    > <!-- TemplateInfo codeOutsideHTMLIsLocked="false"
    -->
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    >
    > <title>I AM's Temple Christian Academy,
    Plainfield, NJ 07060</title>
    >
    > <style type="text/css">
    > <!--
    > body {background-image: url(../images/background.gif);
    > background-repeat: no-repeat;}
    > p {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 12px;
    > font-style: normal;
    > color: #000000;
    > background-color: #FFFFFF;
    > }
    > -->
    > </style>
    > <link href="../iatca.css" rel="stylesheet"
    type="text/css" />
    > <style type="text/css">
    > <!--
    > a:link {color: #990000;}
    > a:visited {color: #006699;}
    > .style1 {font-size: 9px}
    > .style9 {font-size: 12px;
    > color: #FFFFFF;
    > font-weight: bold;}
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <table width="1018" height="937" border="0">
    > <tr>
    > <td width="1012" height="933"
    valign="top"><table width="1002"
    > border="0"
    > cellpadding="16" cellspacing="0">
    > <tr>
    > <td height="17" colspan="3"> </td>
    > </tr>
    > <tr>
    > <td height="108" colspan="3"
    valign="middle"> </td>
    > </tr>
    > <tr>
    > <td width="17%" height="729"
    valign="top"><table width="100%"
    > border="0">
    > <tr>
    > <td><a
    href="../index.htm">Home</a></td>
    > </tr>
    > <tr>
    > <td><a href="../about.htm">About
    IATCA</a></td>
    > </tr>
    > <tr>
    > <td><a href="../schoolhours.htm">School
    Hours </a></td>
    > </tr>
    > <tr>
    > <td><a href="../history.htm">History of
    IATCA </a></td>
    > </tr>
    > <tr>
    > <td><a href="../calendar.htm">School
    Calendar </a></td>
    > </tr>
    > <tr>
    > <td><a
    href="../admission.htm">Admissions</a></td>
    > </tr>
    > <tr>
    > <td><a href="../accounting.htm">Accounting
    Policy</a></td>
    > </tr>
    > <tr>
    > <td><a
    href="../fees.htm">Fees</a></td>
    > </tr>
    > <tr>
    > <td><a
    href="../tuition.htm">Tuition</a></td>
    > </tr>
    > <tr>
    > <td><a
    href="../academics.htm">Academics</a></td>
    > </tr>
    > <tr>
    > <td><a href="../dresscode.htm">Dress
    Code</a></td>
    > </tr>
    > <tr>
    > <td height="19"><a
    href="../classguidelines.htm">Classroom
    > Guidelines</a> </td>
    > </tr>
    > <tr>
    > <td><a
    href="../miscellaneous.htm">Miscellaneous</a></td>
    > </tr>
    > <tr>
    > <td><a
    href="../grading.htm">Grading</a></td>
    > </tr>
    > <tr>
    > <td height="17"><a
    href="../parentprayer.htm">Parent's
    > Prayer</a>
    > </td>
    > </tr>
    > <tr>
    > <td><a href="../studentprayer.htm">Student
    Prayer </a></td>
    > </tr>
    > <tr>
    > <td><a href="../contact.htm">Contact
    Us</a></td>
    > </tr>
    > </table></td>
    > <td width="62%" valign="top"><!--
    TemplateBeginEditable
    > name="body" -->
    > <p>content</p>
    > <!-- TemplateEndEditable --></td>
    > <td width="21%" valign="top"><!--
    TemplateBeginEditable
    > name="News" -->
    > <p>news</p>
    > <!-- TemplateEndEditable --></td>
    > </tr>
    > </table>
    > <p align="center" class="style1">For questions
    about this site,
    > contact <a
    > href="mailto: [email protected]">Melanie
    Waters</a> <a
    > href="
    http://www.proverbs3.org">www.proverbs3.org
    </a></p></td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >

  • HT201320 I have a new work email that works fine on my iPhone 5. However the tone and vibration do not work on my phone or iPad for this particular account? It is like it is on silent!! All the features are on for tone / vibration and nothing happens!!!

    I have a web based new work email account from my Company that is working fairly well on my iPhone 5 and my iPad 4. However no matter what I do in the settings every email that comes in to both device comes in silent with no tone or vibration. Both devices are working fine and my other personal accounts are also working fine with Tones and Vibrations. I do not understand what is going on. I am on a loud Construction site all day and I need to have that working well. Can you help me out?

    ps when syncing it jumps through steps 1 - 4 real fast, i seem to remeber iphone showing the number of tracks transferring and names, but i see nothing? then it sits on 5 saying "waiting for changes to be applied"

  • I have 2 emai accounts which worked perfectly on iphone 4 but on iphone 5 my msn account wont let me reply to emails sent to that account, it leaves the message in my outbox saying recipient was rejected by the server because it does not allow relaying

    I have 2 email accounts which both worked perfectly well on my ipone 4 but since going over to iphone 5 my msn account will not allow me to reply to any emails. It places a message on my screen stating a copy has been placed in your Outbox. The recipient   @.com was rejected by the server because it does not allow relaying. Any ideas on how I can sort this. Would it be worth deleting my MSN account ant putting re-inputting the details again?

    Your email provider has blocked the standard mail port 25 for sending emails and is requiring a different port. This is to avoid mail relays that use mail clients to send spam. You need to find the port that is used by your provider for sending outgoing mail. Then change the settings in your email account on your phone to match the port. You will also have to provide some security credentials for the account.
    You can also try deleting the email account from your iphone, and the adding the email account back as this will many times set the correct port for sending emails.
    You could also do a Google search on the the settings for your device with your email provider. That will provide you with the proper settings.

  • When I try to send a link to a page from Safari, I get a message saying that sending the message to the server failed.  It places a copy in the outbox.  All other email and safari functions work properly.  Ipad 2 IOS 7.1

    My Ipad2 works fine except when I try to email myself a link to a safari webpage.  I get an error message saying that the message failed to connect to the server.  It says that a copy of the message has been left in the outbox.  I cannot get the message from the outbox.  All other email and safari functions work as expected.
    I have cleared data and cookies, powered down, and done a reset.  Nothing seems to help.

    Typing in additional text seems to get the job done.  This seems to be a feature of the latest IOS update, I have never had the problem before the last update.
    I use the box with the arrow just to the left of the URL block at the top of the page to send myself links to pages of interest.  Adding the extra text seems like a pointless step, but it does work.
    Thanks.

  • TS3276 My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    Sorry for the delay...
    I did what you've told me, new account and manually copied my files from Time Machine. I had lots of permissions problems, but at the end, almost everything is in order... It seems it had to be with some of the Apple Preferences, but I can't be sure, as most of them were dumped to the trash can.
    I still don't have my Mail Rules back, unfortunately, although I did goggled some. It is a pity, as I had around 30 or 40 of them, getting my mail in order to each of its mailboxes, but it is a small price as the rest doesn't show the before syntoms.
    Thanks for the help, anyway!!

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

Maybe you are looking for

  • How do i get the download window to remain open after closing firefox browser window

    i sometimes download a bunch of files all at ones then have to go back to review them. but i don't need the browser open to do this just the download window. in older versions the download window would remain open after i closed the browser but i don

  • I'm having a problem downloading iOS 6....

    I'm having a problem downloading ios6. I've tried numerous times and the same error comes up. It says "Software Update Failed, An error occurred downloading iOS 6." If anyone has a solution please share! Thanks

  • Undo typing box pops up

    up ever since upgrading to 8.0, I've had the "undo typing" box pop up on occasion. It doesn't happen all the time, but when it does, it pops up constantly when I'm trying to type! It's **** annoying!!!

  • Job Termination In the source system (TSV_TNEW_PAGE_ALLOC_FAILED)

    Hi Experts,    I have a load in bw which extracts the data from R/3.  In the IP selection i have OLAP variable set to 0calmonth and the selection is one month.  The loads gets failed with the page allocation error in the source system.  I tried reduc

  • Firefox will not load thumbnails on the youtube website

    I've cleared my caches and everything, but whenever I'm on youtube the thumbnails won't load. the actual videos run ok, but you only see white where the thumbnail should be.