Re: Send Mail Example

2000-12-10 Thread Alex A. Almero
arin Velikov [SMTP:[EMAIL PROTECTED]] > > Verzonden:dinsdag 14 november 2000 9:14 > > Aan: [EMAIL PROTECTED] > > Onderwerp:Re: Send Mail Example > > > > Sorry > > > > Please replace: > > > > URL u = new URL("mailto:" +

Re: Send Mail Example

2000-12-08 Thread Marcel van Kooy
:14 > Aan: [EMAIL PROTECTED] > Onderwerp: Re: Send Mail Example > > Sorry > > Please replace: > > URL u = new URL("mailto:" + email); // Create a mailto: URL > > with: > > URL u = new URL("mailto:" + ToEmailAddr); // Create a

Re: Send Mail Example

2000-11-14 Thread JM
Sorry, in fromRequest.jsp change "fromName" by "fromNom" and "toName" by "toNom" JM. -- formRequest.jsp =

Re: Send Mail Example

2000-11-14 Thread JM
Hi ! try this : --- sendMail.jsp <%@ page import="java.util.Properties, javax.mail.*, javax.mail.internet.*" %> <% // Recup des infos requises pour le mail String fromAddr = request.getParameter("fromAddr");

Re: Send Mail Example

2000-11-14 Thread Ron Chan
Hi, the central stuff follows. Put the appropriate parameters into a hashtable and call this method. ron private void sendMail( Hashtable params ) throws AddressException, MessagingException { String mailServer = (String) params.get( "mailServer" ); String subject =

Re: Send Mail Example

2000-11-14 Thread Marin Velikov
1 row outmail.println("row2"); // 2 row // Close the stream to terminate the message outmail.close(); } catch (Exception ex) { } Marin. - Original Message - From: "Tripat Singh" <[EMAIL PROTECTED]> To: <[E

Re: Send Mail Example

2000-11-14 Thread Tripat Singh
i tried this but it doesn't works for me. It throws an Unknown Host Exception. Have u run the example code successfully. Regards - Original Message - From: "Marin Velikov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 14, 2000 1:43 PM Sub

R: Send Mail Example

2000-11-14 Thread Cristoforo Abbattista, Andersen
It's the string containing the actual email address: eg: '[EMAIL PROTECTED]' Hi > -Messaggio originale- > Da: Tripat Singh [mailto:[EMAIL PROTECTED]] > Inviato: martedì 14 novembre 2000 7.53 > A: [EMAIL PROTECTED] > Oggetto: Re: Send Mail Example > &

Re: Send Mail Example

2000-11-14 Thread Marin Velikov
AIL PROTECTED]> Sent: Tuesday, November 14, 2000 8:53 AM Subject: Re: Send Mail Example > Please specify what does email stands for in > > URL u = new URL("mailto:" + email); // Create a mailto: URL > > regards > > > > - Original Message - >

Re: Send Mail Example

2000-11-13 Thread Tripat Singh
Please specify what does email stands for in URL u = new URL("mailto:" + email); // Create a mailto: URL regards - Original Message - From: "Marin Velikov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 13, 2000 10:33 PM Subje

Re: Send Mail Example

2000-11-13 Thread hamid
Behalf Of Mukesh Jain Sent: Tuesday, November 14, 2000 4:36 AM To: [EMAIL PROTECTED] Subject: Re: Send Mail Example At first glance I see one problem: I don't think u can set or get the properties this way set_propertyname or get_propertyname There shouldn't be any underscore there. It

Re: Send Mail Example

2000-11-13 Thread M. Simms
ECTED] > Subject: Re: Send Mail Example > > > HI > > // Code start here: > String FromEmailAddr="[EMAIL PROTECTED]; > String ToEmailAddr="[EMAIL PROTECTED]"; > > String[] emailMessage = new String[3]; > emailMessage[0] = "Subject:blabla "; >

Re: Send Mail Example

2000-11-13 Thread Mukesh Jain
, Srikanth [SMTP:[EMAIL PROTECTED]] > Sent: Monday, November 13, 2000 10:53 AM > To: [EMAIL PROTECTED] > Subject: Re: Send Mail Example > > Hi All, > > I am tring to insert values into database, > Here is my code, can any one tell me what is the problem? > &

Re: Send Mail Example

2000-11-13 Thread Hernandez, Rey
http://www.webtechniques.com/sourcecode/2000/12/java/1.lst WebTechniques just had an article about sending Email from Java. -Original Message- From: Antonio W. Lagnada [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 8:18 AM To: [EMAIL PROTECTED] Subject: Send Mail Example

Re: Send Mail Example

2000-11-13 Thread Mukka, Srikanth
Hi All, I am tring to insert values into database, Here is my code, can any one tell me what is the problem? My bean code is public class GroupCodes { Connection con; private String cgt_code_group_type_cd; private String cgt_code_group_desc; private String ct_code_type_cd;

Re: Send Mail Example

2000-11-13 Thread Marin Velikov
Close the stream to terminate the message outmail.close(); // Code end Here. That's work. Marin - Original Message - From: "Antonio W. Lagnada" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 13, 2000 6:17 PM Subject: Send Mail Example >

Re: Send Mail Example

2000-11-13 Thread Sanjay Gomes
There is one in the Archives Sanjay -Original Message- From: Antonio W. Lagnada [mailto:[EMAIL PROTECTED]] Sent: 13 November 2000 16:18 To: [EMAIL PROTECTED] Subject: Send Mail Example Hello All, Does anyone have a simple example on how send an email for in JSP or Servlet? Any help

Send Mail Example

2000-11-13 Thread Antonio W. Lagnada
Hello All, Does anyone have a simple example on how send an email for in JSP or Servlet? Any help would be appreciated. Thanks -- Antonio W. Lagnada Ecommerce Consultant [EMAIL PROTECTED] This email address is specifically for JSP-Interest email list. Remove _NOSPAM for the actual email. __