build/email-subjects #5281
Reference in New Issue
Block a user
Delete Branch "build/email-subjects"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Allow specifying a subject in our email element.
Eg the xhtml content
Will now generate
Which when clicked will open an email client, and correctly populate the subject.
I also added the subject to all ada zangemann pages, and have documented it on the web features page.
Resolves #2742
adcd3289a1todaeade7a24@@ -85,6 +86,11 @@--><xsl:text disable-output-escaping="yes"><a href="mailto:</xsl:text><xsl:value-of select="$email-encoded" disable-output-escaping="yes"/><xsl:text>?</xsl:text>I'm wondering on the order of the separator
?added before the check if the$subjectis set. The separator is only needed if a subject is set right?I did it like this so that if in future we add another param, like say a cc we can do so without any logic around if it is the first param added having to add the question mark?
I can change it if we like, I think it matters little.