how to control the security warnings

Hi All,I used applet as part of servlet application ,while sending the mail (by using javax.mail package) i got security warning .How to control the security warning?Thanks,Kiran
[220 byte] By [p.v.k.ka] at [2007-11-27 5:28:44]
# 1
Where do you try to send the email -- in the applet or in the servlet?
quittea at 2007-7-12 14:51:15 > top of Java-index,Java Essentials,Java Programming...
# 2
> Where do you try to send the email -- in the applet> or in the servlet?Through applet
p.v.k.ka at 2007-7-12 14:51:15 > top of Java-index,Java Essentials,Java Programming...
# 3
I assume the applet is not signed, so you can only open a (SMTP) socket to the server the applet comes from. I'd suggest to do the sending in the servlet instead and trigger this action through an URL access by the Applet.
quittea at 2007-7-12 14:51:15 > top of Java-index,Java Essentials,Java Programming...