| |
|
| |
 |
|
|
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
|
|
|
|
 |
|
| |
|
| |
 |
|
|
It all started at the end of last week - I was trying to put some new functionality on my company's intranet (an SMS messenger service), and I hit a problem with my database interface: http://www.htmlforums.com/showthread.php?t=86317
As you can see, thanks to Vege, I was able to identify the problem - incorrect server version... So I got the all clear to down the box and install a new MySQL server.
Now, let me take you back almost three years. I was 24 then, just getting to grips with the idea that I was being trusted with developing a company intranet for an organisation of about 90 people. Trying to come up with all sorts of time and work saving code. I have to say that, in those three years I have learnt much and can now come up with a very good, robust, and easy to manage system.
|
|
read more | Horus_Kol's blog | 2 comments
|
|
|
|
 |
|