| |
|
| |
 |
|
|
Hi all,
Could any one plz explain what is "SmtpClient client = new SmtpClient("mail.xxxxx.xxx");" in the following code?
<%@ page import="sun.net.smtp.SmtpClient, java.io.*" %>
<%
String from="gseshad@hotmail.com";
String to="gov@jguru.com, govi@bigfoot.com";
try{
SmtpClient client = new SmtpClient("mail.xxxxx.xxx");
client.from(from);
client.to(to);
PrintStream message = client.startMessage();
message.println("To: " + to);
message.println("Subject: Sending email from JSP!");
message.println("This was sent from a JSP page!");
message.println();
|
|
read more | 220590's blog | 1 comment
|
|
|
|
 |
|
| |
|
| |
 |
By Wiki at 2008-10-15 07:28
|
Unlocked Cell Phones at All Mobile Brands. An online source for all brand GSM cell phones, unlocked phones, cellular phones and mobile phone accessories.
|
|
Wiki's blog | 2 comments
|
|
|
|
 |
|