Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

nessa -- compose.htm -- Template Query

Quote Reply
nessa -- compose.htm -- Template Query
Hi,

See the following in the nessa template set:

Code:
<td>

<%unless is_ie5%>
<input type="checkbox" name="compose_is_html" tabindex="5" value="1"<%if compose_is_html%> checked<%endif%>> Send as HTML<br><%endif%>
</td>


While composing in txt mode and in IE>5 i do not see the checkbox which should be there as per the above. Comment Plz.

Anup
Quote Reply
Re: [anup123] nessa -- compose.htm -- Template Query In reply to
"unless" is the same as saying "if not", so you're saying "if not is_ie5", and since is_ie5 is true, the result is false, so it does not include that code. I think you mean "if is_ie5".

Adrian
Quote Reply
Re: [brewt] nessa -- compose.htm -- Template Query In reply to
Hi,

Well i played around a bit and found that even from txt mode you can send a HTML message (pasting the complete html code for instance and then selecting this option). Now the only problem which creeps us is Charlie's 'Save To sent folder' plugin does not save the message .... template code below:


Quote:
<%if options_compose_save_copy_to_sent == 0%> Save To Sent Folder: <input type="checkbox" name="plug_save_sent" value="1">



So can't this feature be made universally true (Send As HTML) from Txt mode. How to get over with the problem as above.

Also, as an extension... say a user sends a mail (pastes the complete html code) and forgets to Check this option, the recepient (talking from GM user point of view) will see a mail full of codes (saw this personally). Can there be an option for a GM user to "View As Html" button while reading such mails. This Feature is there on mail2web.com

Thnx

Anup