I am not really aware with FP but you can try this
<!--webbot bot="DatabaseResultColumn" s-columnnames=" ID,T1,T2,icq,T4,country,version,T5,Remote_computer
_name,User_name,Browser_type,Timestamp,gig_name,em
ail,msn,real_name" s-column="email" b-tableformat="TRUE" b-hashtml="TRUE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1"><<</font>email<font size="-1">>></font>" startspan -->
<a href="mailto:<%=FP_Field(fp_rs,"email")%>"><img src="images/envelope.gif"></a>
<!--webbot bot="DatabaseResultColumn" endspan i-checksum="11866" -->
Note: replace
<%=FP_Field(fp_rs,"email")%> with
<a href="mailto:<%=FP_Field(fp_rs,"email")%>"><img src="images/envelope.gif"></a>
Good Luck!