Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [anup123] Is there a way?

Quote Reply
Re: [anup123] Is there a way? In reply to
Hi,

You could do this by editing the templates. Edit msg_list_include, and look for:

<%if msgs_sent_from_name%><%msgs_sent_from_name%><%elsif msgs_sent_from_email%><%msgs_sent_from_email%><%else%><i>No From</i><%endif%>

You could change that to something like:

Code:
<%if msgs_sent_from_name%>
<%if msgs_sent_from_name eq 'your admin name'%>
<font color="red"><%msgs_sent_from_name%></font>
<%else%>
<%msgs_sent_from_name%>
<%endif%>
<%elsif msgs_sent_from_email%>
<%msgs_sent_from_email%>
<%else%>
<i>No From</i>
<%endif%>


Cheers,

Alex
--
Gossamer Threads Inc.
Subject Author Views Date
Thread Is there a way? anup123 3278 Nov 4, 2002, 2:17 PM
Thread Re: [anup123] Is there a way?
Alex 3204 Nov 6, 2002, 2:49 PM
Post Re: [Alex] Is there a way?
anup123 3157 Nov 13, 2002, 2:00 PM
Thread Re: [Alex] Is there a way?
anup123 3142 Nov 15, 2002, 3:23 AM
Post Re: [anup123] Is there a way?
yogi 3132 Nov 15, 2002, 3:32 AM
Post Re: [Alex] Is there a way?
anup123 3137 Nov 15, 2002, 3:39 AM