Delphi PHP C# Display SMTP today TIdMessage SendMail file_exists SmtpServer ContentType CharSet Thumbnail creation from image stream SmtpMail MailMessage DragQueryFile mail Java RecipientType SC_MONITORPOWER remark Print Out Text Strings RDP Port MapReduce framework session session.getAttribute session.setAttribute setRecipients SMTP Server SMTP Server Hostname TIdSMTP TNMSMTP Turn Monitor Off Image Scaling Bitmap Bitmap to Jpeg Conversion Canvas CentOS 7 Cloud Computing cron.hourly DB Optimization dead code declaration Framework Postfix include file JQuery JSP Email JSP Image Processing JSP session control auto-repair MIME Type Encoding MimeBodyPart Monitor Power

JSP EMAIL.ZIP

Send An Email Using A Bean   (created at Aug 30, 2007)   37  

This JSP snippets shows how to send an email using a reuasable javabean    JSP Sample - Send Email     
 
 ...

Set up an SMTP server on CentOS 7   (created at Jan 15, 2024)   100  

To set up an SMTP server on CentOS 7, you can use a popular mail server software called Postfix. Here are the steps to install and configure Postfix:1. Update System: Make sure your system is up-to-date by running the following commands:2. Install Postfix:...

Copy text to clipboard in Javascript   (created at May 07, 2013)   752  

Below is the example can copy text to clipboard in javascript. It's all tested in Microsoft Internet Explorer.

Word counting source program based on MapReduce framework   (created at Feb 28, 2012)   113  

The MapReduce framework operates exclusively on  pairs, that is, the framework views the input to the job as a set of paris and produces a set of pairs as the output of the job, conceivably of different types. Below is the simple application that...

How to send email by TIdSMTP VCL ?   (created at Jul 07, 2009)   48  

TIdSMTP component is very useful VCL in Delphi 2009. Here's the simple example to send email.uses IdSMTP, IdMessage;;procedure KMAIL( sTo, title, body:string);var  IdMsg : TIdMessage;begin  IdMsg := TIdMessage.Create(nil);  try    ...

How to resize image ?   (created at Jun 03, 2009)   152  

Here's the simple example can resizing source image:

How to set and get sessions on JSP code ?   (created at Oct 27, 2008)   138  

Here's the simple example to set and put sessions.save_my_name,jsp<%   String name = request.getParameter( "username" );   session.setAttribute( "theName", name );%>Continuesave_my_n...

How to add a declaration on JSP code ?   (created at Oct 27, 2008)   88  

If you have developed C or C++ program, you may know below examples.// printf( "a.out");/*  printf( "b.out");*/Above code have no bug, but no code will be compiled, because it's all declarations.In JSP, you can make declarations as well. In some docum...

How to include file in JSP ?   (created at Oct 27, 2008)   97  

Just like ASP, or PHP, JSP is also allow to include for programmer by include function.Here's the simple example.Going to include hello.jsp...
<%@ include file="hello.jsp" %>

How to print out text strings on HTML directly ?   (created at Oct 27, 2008)   115  

In JSP, you can print out text strings by out.println(). Here's the example. <%   

Put Date Time on HTML   (created at Oct 27, 2008)   54  

In JSP, you can simply put Date Time as below.

How to send email in PHP ?   (created at Oct 16, 2007)   39  

Send an email from PHP - one line example. 

JQuery And Function Chaining   (created at Aug 30, 2007)   65  

I am learning new things about jQuery: function chaning is a really cool feature: