[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-2479) META Tags added to HTML HEAD in Seam HTML mail get removed

Terry (JIRA) jira-events at lists.jboss.org
Thu Jan 10 09:42:43 EST 2008


META Tags added to HTML HEAD in Seam HTML mail get removed
----------------------------------------------------------

                 Key: JBSEAM-2479
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-2479
             Project: JBoss Seam
          Issue Type: Bug
          Components: Mail
    Affects Versions: 2.0.0.GA
         Environment: Windows, Outlook,
            Reporter: Terry
         Assigned To: Pete Muir
             Fix For: 2.0.1.GA


the META tags added to HTML Head tag when sending Seam email in HTML get removed from the generated HTML. absence of META tags and not being able to add one causes issues in applications like outlook.

<m:message>
  <m:from name="TISC Online" address="info at tisc.edu.au" />
    <m:to name="#{subscriptionAdmin.recipient[0]}">#{subscriptionAdmin.recipient[1]}</m:to>
    <m:subject>#{subscriptionAdmin.subscriptionConfig.massMailSubject}</m:subject>
    <m:body>
        <html>
            <head>
              <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"/>
            </head>  
            <body>
                <h:outputText value="#{subscriptionAdmin.massMailMessageInterpolated}" escape="false"/>
            </body>
        </html>
    </m:body>
</m:message> 

come out like:

<html>
<head>
</head>
<body>
...
body contents
...

</body>
<html>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list