I want to send email from jsp,

i want to send email from jsp, i dont know smtp:host, how to send mail?
plz carify this doubt sir.

OK thanks sir but i installed alredy. i write this code. plz send any error's are there. and i dont know smtp:host name. i put my port address?
try{
    //Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "//10/0/6/252");
    // create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
     // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    msg.setFrom(new InternetAddress("[email protected]"));
     msg.addRecipient(Message.RecipientType.To,new InternetAddress("[email protected]"));
    // Setting the Subject and Content Type
    msg.setSubject("hi..");
    msg.setText("hi bharath how are you");
    Transport.send(msg);
catch(Exception e)
              out.println(e);
     }

Similar Messages

  • Help: sending email from JSP or MSB problem

    Hi Everyone,
    I have an J2EE application which sends email to a user when a user submit a form. The email is send from Jsp page and MSD using sun.net.smtp.SmtpClient class. The codes for sending email are:
    String to = "[email protected]";
    String from="[email protected]";
    String smtpHost="the mail smtp host";
    SmtpClient client = new SmtpClient(smtpHost);
    client.from(from);
    client.to(to);
    PrintStream message = client.startMessage();
    message.println("To: " + to);
    message.println("Subject: a subject");
    message.println("email body");      
    It sends email to internal email account user without a problem. However, when the email reciever's email address is a outside email account such as yahoo, I got the following error message:
    Error 500: 550 not local host yahoo.com, not a gateway                     
    This email sending system worked ok before for outsider email address in our old email server. We recerently switched to a new email server. The jsp page and MDB can no longer send email to outside account.
    Any help is appreciated.
    thanks

    Please see this section in The J2EE 1.4 Tutorial for an example of sending email from an enterprise bean:
    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/Resources5.html#wp79827

  • I only want to send emails from mail (not receive)

    I am apprehensive in setting up my Mail because I don't want it to import any emails from my online email account. I don't want all that stuff on my hard drive and I like to access it online from whatever computer.
    Is there a way to set up your email account so that you can only email out, but not receive/download the emails on to your computer?

    Set up your account, have it Enabled, but do not select to have it included when automatically checking for new messages, and also click on Mailbox in the menubar and take the account Offline. In Mail, and Offline account can be used to send, but will not collect new messages. There are a few providers that require you to have at least logged into the serve one time, and authenticated.
    Ernie

  • Send Email From JSP.

    Hai,
    I am new to JSP.Now I create one application in jsp using netbean5.I need code for send a email from that application.
    please any one help to me
    by
    Beemaraj.v

    You can use the JavaMail API for that.
    JavaMail homepage: http://java.sun.com/products/javamail
    JavaMail FAQ: http://java.sun.com/products/javamail/FAQ.html
    JavaMail subforum here: http://forum.java.sun.com/forum.jspa?forumID=43

  • I don't want to send email from @me nor @icloud

    Suddenly my outbound iPad emails default to @me. NOOOOOOO!!!! I don't want to send from anything but my Yahoo. (Not @icloud --- nothing only yahoo.)
    Help me stop it please.

    Go to Settings>>Mail,Contacts,Calendars>>Default Account, then choose for Yahoo.
    Hope it helps

  • JavaMail - Sending Email from JSP Templates

    Is there any existing method of sending emails (I'm using JavaMail) from templates written as JSP files? I've done quite a bit of Googling on the matter, and I'm still a bit new to JSP.
    The solution I'm looking for is a way to have an HTML template for an email with variables embedded, which are to be replaced by data from the servlet.
    I know numerous individuals have run in to a similar situations, so I'm sure a solution exists.

    The content of an email can come from a "DataSource"
    There is an implementation of Datasource that can download from a URL (javax.activation.URLDataSource)
    That means you can write a JSP which will be your "email" and then call that JSP to generate the email text.

  • How can Send Email From JSP to all Mail server.it gives error

    I try this code in netbean 5.But it will give the Error.
    The code:
    <%@page import="java.util.*"%>
    <%@page import="javax.mail.*"%>
    <%@page import="javax.mail.internet.*"%>
    <%
    Properties props = System.getProperties();
    props.put("mail.smtp.host", "smtp.gmail.com" );
    props.put("mail.smtp.port", "465" );
    Session s = Session.getInstance(props, null);
    MimeMessage message = new MimeMessage(s);
    String From = request.getParameter("sender");
    InternetAddress from = new InternetAddress(From);
    message.setFrom(from);
    String Tos = request.getParameter("reciever");
    InternetAddress to = new InternetAddress(Tos);
    message.addRecipient(Message.RecipientType.TO, to);
    String sub =request.getParameter("subject");
    message.setSubject(sub);
    String mgs =request.getParameter("message");
    message.setText(mgs);
    Transport.send(message);
    %>
    <html>
    <p align="center">
    A Message has been sent. <br>
    Check your inbox.
    </p>
    <p align="center">
    Click here to send another!
    </p>
    </html>
    Error is :
    javax.servlet.ServletException: Could not connect to SMTP host: smtp.gmail.com, port: 465
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:848)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:781)
         org.apache.jsp.MailBeema_jsp._jspService(MailBeema_jsp.java:88)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)
    root cause
    javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465;
    nested exception is:
         java.net.ConnectException: Connection timed out: connect
         com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1282)
         com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:370)
         javax.mail.Service.connect(Service.java:275)
         javax.mail.Service.connect(Service.java:156)
         javax.mail.Service.connect(Service.java:105)
         javax.mail.Transport.send0(Transport.java:168)
         javax.mail.Transport.send(Transport.java:98)
         org.apache.jsp.MailBeema_jsp._jspService(MailBeema_jsp.java:68)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)

    javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465;
    nested exception is:
    java.net.ConnectException: Connection timed out: connectFairly self-explaining, isn't it? That host cannot be connected.
    Either check the correctness of the hostname/port, or check your network settings (firewall, router, etc).

  • Sending emails from jsp

    hi,
    I have a tomcat running on linux, database on oracle9i windows and mail server is exchange 2000
    I want to set reminders to the users of one portal ,
    like if they insert new data they should get reminders via email after first 7 days to update the data. if they do not update after 7 days an escalation should go to the managers for not updating data on 10th day.
    also i want to send a mail immediately when they insert the data for first time.
    help please.

    You can use the mailer taglib

  • How to send an email from jsp

    hello
    i want to send email from jsp
    the following is that code
    and i also downloaded the mail.jar and activation.jar
    and there is no error in the code
    but the email is not sent
    kindly tell me that what can be the reason
    <%@ page import="sun.net.smtp.SmtpClient, java.io.*" %>
    <%
    String from="[email protected]";
    String to="[email protected]";
    try{
    SmtpClient client = new SmtpClient("xx.xxx.xx.xx");//replace with the reqiured smtp
    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();
    message.println();
    message.println();
    client.closeServer();
    catch (IOException e){     
    System.out.println("ERROR SENDING EMAIL:"+e);
    %>

    try this:
    <html>
    <body>
    <form action="enviaremail.jsp" method="post">
    <table border="0" align="center" bgcolor="tan">
    <tr>
    <td><b>Para..:</b></td>
    <td><input type="Text" name="para"</td>
    </tr>
    <tr>
    <td><b>De..:</b></td>
    <td><input type="Text" name="de"</td>
    </tr>
    <tr>
    <td><b>Assunnto..:</b></td>
    <td><input type="Text" name="assunto"</td>
    </tr>
    <tr>
    <td colspan="2">
    <textarea name="mensagem" rows=10 cols=45></textarea>
    </td>
    </tr>
    </table>
    <center> <input type="Submit" value="Enviar Email"></center>
    </form>
    </body>
    </html>
    <html>
    <body>
    <%@ page import="jspbrasil.Email" %>
    <jsp:useBean id="email" class="jspbrasil.Email"/>
    <%
    try {
    String mailServer = "mail.seumailserver.com.br"
    String assunto = request.getParameter("assunto")
    String para = { request.getParameter("para") };
    String de = request.getParameter("de");
    String mensagem =request.getParameter("mensagem");
    email.sendSimpleMail(mailServer, assunto, para, de, mensagem);
    %>
    <p>Email enviado com Sucesso !!!</p>
    <%
    catch (AddressException e) { %>
    <p>Endere�o de Email inv�lido</p>     
    <%}%>
    <%
    catch (MessagingException e) { %>
    <p>Imposs�vel enviar o email.</p>     
    <%}%>
    </body>
    </html>
    package jspbrasil;
    import javax.mail.*;
    import javax.mail.internet.*;
    import.java.util.*;
    public class Email {
    public void sendSimpleMail (String mailServer, String subject,
    String to,String from, String mensagem)
    throws AddressException, MessagingException {
    Properties mailProps = new Properties();
    //defini��o do mailserver
    mailProps.put("mail.smtp.host", mailServer)
    Session mailSession = Session.getDefaultInstance(mailProps, null);
    //As duas linhas seguintes de c�digo, colocam no
    //formato de endere�os,
    //supostamente v�lidos, de email os dados
    //passados pelos par�metros to e from.
    InternetAddress destinatario = new InternetAddress (to);
    InternetAddress remetente = new InternetAddress (from);
    //As duas linhas de c�digo a seguir, s�o
    //respons�veis por setar os atributos e
    //propriedas necess�rias do objeto message
    //para que o email seja enviado.
    //inicializa��o do objeto Message
    Message message = new MimeMessage (mailSession);
    //Defini��o de quem est� enviando o email
    message.setFrom(remetente);
    //define o(s) destinat�rio(s) e qual o tipo do
    //destinat�rio.
    //os poss�veis tipos de destinat�rio: TO, CC, BCC
    message.setRecipient( Message.RecipientType.TO, destinat�rio );
    //defini��o do assunto do email
    message.setSubject (subject);
    //defini��o do conte�do da mensagem e do
    //tipo da mensagem
    message.setContent (mensagem.toString(), "text/plain");
    //a linha de c�digo seguinte � a respons�vel
    //pelo envio do email
    Transport.send (message);

  • Send email from OWB with authenticated SMTP server (AUTH_LOGIN)

    Hi all,
    I want to send email from Oracle Warehouse Builder 11.2.0.2 using a SMTP server with basic authentication (AUTH_LOGIN).
    I've created an ACL for OWBSYS user according to note ID 1229769.1 in support.oracle.com.
    But, I need to configure again the ACL to connect to the SMTP server using user and password.
    I read the article in metalink, *How to Send an Email Using SMTP over an SSL Connection [ID 1323140.1]*+
    but I don't know how can I configure again the ACL for use in OWB.
    How OWB is able to authenticate with the SMTP server?
    Thanks!
    Maximiliano.

    Duplicate -
    How to send email from OSB with Mail server that requires SSL or STARTTLS
    Regards,
    Anuj

  • How can I send email from my domain from my iPhone using Gmail

    I want to send email from my iPhone using Gmail/Exchange but I want my emails to come from my own domain.
    I've tried a few different methods but my email ends up crashing after a couple days.
    Is there a simplified process to solve this annoyance?
    Thanks in advance

    lukefromsudbury wrote:
    I have no idea what your're talking about. 
    Neither do I, nor any of the other posters in this thread.
    Watch the Video Here:
    http://www.theanywhereoffice.com/digital-lifestyle/how-to-send-mail-from-your-ow n-domain-using-gmail-and-iphone.htm
    Shows you exactly how to do what you want.

  • Sending Email from DB

    I am working with 9i Db and want to send Email from procedural code.I have tried utl_smtp.I have written own procedure whcich calls utl_smtp ,opens connection,write data ,close_data.The procedure excecutes succsefully, however the mail is not recived in my mail box.I am executing from server mcahine itself.Do i need configure SMTP. and how
    Please help

    I believe you need to configure SMTP to route your mails. check with your administrators.
    Jaffar

  • Sending emails from application

    Hello techies,
    I want to send emails from my application.
    Iam using java.net.*,java.util.*,java.io.*; packages upto now .
    I dont want to use javax.mail.* package.
    What is the alternative to my problem. Is there any package or class which is usefull to send mails????
    regards,
    ramu

    Sending email using SMTP and Java
    I was on a project a while ago where we needed to be able to send email notifications from the application to the administrator of the database whenever certain errors were trapped. This example shows you how. There are a few libraries that we will need to add in order to get started.
    Include the following in your project:
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;     // Used for date formatting.
    After you have added the above libraries you are ready to start to get into the good stuff!
    The first step to be able to send email it to create a connection to the SMTP port that is listening. Most of the time the SMTP port for a server is usually 25 but check with your email administrator first to get the right port.
    Here is the code to make that initial connection:
    private Socket smtpSocket = null;
    private DataOutputStream os = null;
    private DataInputStream is = null;
    Date dDate = new Date();
    DateFormat dFormat = _
        DateFormat.getDateInstance(DateFormat.FULL,Locale.US);
    try
    { // Open port to server
      smtpSocket = new Socket(m_sHostName, m_iPort);
      os = new DataOutputStream(smtpSocket.getOutputStream());
      is = new DataInputStream(smtpSocket.getInputStream());
      if(smtpSocket != null && os != null && is != null)
      { // Connection was made.  Socket is ready for use.
        [ Code to send email will be placed in here. ]
    catch(Exception e)
    { System.out.println("Host " + m_sHostName + "unknown"); }
    Now that you have made the connection it is time to add the code to send off the email. This is pretty straight forward so I will add comments into the code sample itself.
    try                       
    {   os.writeBytes("HELO\r\n");
        // You will add the email address that the server
        // you are using know you as.
        os.writeBytes("MAIL From: <[email protected]>\r\n");
        // Who the email is going to.
        os.writeBytes("RCPT To: <[email protected]>\r\n");
        //IF you want to send a CC then you will have to add this
        os.writeBytes("RCPT Cc: <[email protected]>\r\n");
        // Now we are ready to add the message and the
        // header of the email to be sent out.               
        os.writeBytes("DATA\r\n");
        os.writeBytes("X-Mailer: Via Java\r\n");
        os.writeBytes("DATE: " + dFormat.format(dDate) + "\r\n");
        os.writeBytes("From: Me <[email protected]>\r\n");
        os.writeBytes("To:  YOU <[email protected]>\r\n");
        //Again if you want to send a CC then add this.
        os.writeBytes("Cc: CCDUDE <[email protected]>\r\n");
        //Here you can now add a BCC to the message as well
        os.writeBytes("RCPT Bcc: BCCDude<[email protected]>\r\n");
        sMessage = "Your subjectline.";
        os.writeBytes("Subject: Your subjectline here\r\n");
        os.writeBytes(sMessage + "\r\n");
        os.writeBytes("\r\n.\r\n");
        os.writeBytes("QUIT\r\n");
        // Now send the email off and check the server reply. 
        // Was an OK is reached you are complete.
        String responseline;
        while((responseline = is.readLine())!=null)
        {  // System.out.println(responseline);
            if(responseline.indexOf("Ok") != -1)
                break;
    catch(Exception e)
    {  System.out.println("Cannot send email as an error occurred.");  }I hope this has helped you out!
    [i code above code from someone else,  thanks to him, her ]

  • Send emails from SAP BPC is disabled?

    Hello,
    I want to send emails from the SAP BPC, I have configured everything. But I have read that this part is disabled in SAP BPC 5.1.
    Is that true??
    Thank you very much.
    Pablo Mortera.

    Hi Pablo,
    Are you talking about any specific emails to be generated from BPC or emails in general? For example, if you are alluding to automatic generation of emails to the owners of BPF or the reviewers of BPF, then that feature is available in BPC7M (Microsoft version of BPC7.0).
    Regards
    Pravin

  • Sending Email from Forte

    Hi guys,
    Just a quick question. I am wanting to send email from our Forte
    application and am wondering what is the easiest way to do this. Any
    ideas appreciated!
    Thanks,
    Cameron Clark,
    Melbourne, Australia.

    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    ------_=_NextPart_001_01BEFA14.F973DD04
    Content-Type: text/plain;
    charset="iso-8859-1"
    Here is code that we have in one of our applications to send an email. Hope
    this helps!
    anSMTPHandler : SMTPHandler = new(theMailServer='email.wyle.com');
    tdlist : array of textData = new ;
    tdlist.AppendRow(__EmailAddress);
    messageBody : Textdata = new ;
    messageBody.Concat('*******************\n');
    messageBody.Concat('RFQ# ').Concat(__RFQ.RFQNumber).Concat('\n');
    messageBody.Concat('*******************\n');
    messageBody.Concat('The following parts on this rfq are registerable but no
    registration number was provided:\n');
    messageBody.Concat(' \n');
    messageBody.Concat(__EmailPartList).Concat('\n');
    subject : TextData = new(value='RFQ Without Registration Numbers');
    Sender : TextData = task.part.OperatingSystem.GetEnv('CCEmailFrom');
    If Sender <> NIL Then
    anSMTPHandler.SendMessage(tdlist,sender,subject,messageBody);
    else
    anSMTPHandler.SendMessage(tdlist,TextData('[email protected]'),subject,message
    Body);
    end if ;
    messageBody.Clear ;
    messageBody.SetAllocatedSize(0);
    subject.clear ;
    subject.setAllocatedSize(0);
    anSMTPHandler = NIL ;
    -----Original Message-----
    From: Cameron Clark [mailto:[email protected]]
    Sent: Wednesday, September 08, 1999 12:31 AM
    To: Forte User Group
    Subject: (forte-users) Sending Email from Forte
    Hi guys,
    Just a quick question. I am wanting to send email from our
    Forte
    application and am wondering what is the easiest way to do
    this. Any
    ideas appreciated!
    Thanks,
    Cameron Clark,
    Melbourne, Australia.
    For the archives, go to: http://lists.sageit.com/forte-users
    and use
    the login: forte and the password: archive. To unsubscribe,
    send in a new
    email the word: 'Unsubscribe' to:
    [email protected]
    ------_=_NextPart_001_01BEFA14.F973DD04
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <HTML>
    <HEAD>
    <DEFANGED-META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
    charset=3Diso-8859-1">
    <DEFANGED-META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
    5.5.2448.0">
    <DEFANGED-TITLE>RE: (forte-users) Sending Email from Forte</TITLE>
    </HEAD>
    <BODY>
    <P><FONT SIZE=3D2 FACE=3D"Arial">Here is code that we have in one of =
    our applications to send an email.  Hope this helps!</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">anSMTPHandler : SMTPHandler =3D =
    new(theMailServer=3D'email.wyle.com');</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">tdlist : array of textData =3D new =
    ;</FONT>
    <BR><FONT SIZE=3D2 =
    FACE=3D"Arial">tdlist.AppendRow(__EmailAddress);</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">messageBody : Textdata =3D new =
    ;</FONT>
    <BR><FONT SIZE=3D2 =
    FACE=3D"Arial">messageBody.Concat('*******************\n');</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">messageBody.Concat('RFQ# =
    ').Concat(__RFQ.RFQNumber).Concat('\n');</FONT>
    <BR><FONT SIZE=3D2 =
    FACE=3D"Arial">messageBody.Concat('*******************\n');</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">messageBody.Concat('The following =
    parts on this rfq are registerable but no registration number was =
    provided:\n');</FONT>
    <BR><FONT SIZE=3D2 =
    FACE=3D"Arial">messageBody.Concat('      =
    \n');</FONT>
    <BR><FONT SIZE=3D2 =
    FACE=3D"Arial">messageBody.Concat(__EmailPartList).Concat('\n');</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">subject : TextData =3D =
    new(value=3D'RFQ Without Registration Numbers');</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">Sender : TextData =3D =
    task.part.OperatingSystem.GetEnv('CCEmailFrom');</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">If Sender &lt;&gt; NIL Then</FONT>
    <BR>        <FONT SIZE=3D2 =
    FACE=3D"Arial">anSMTPHandler.SendMessage(tdlist,sender,subject,messageBo=
    dy);</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">else</FONT>
    <BR>        <FONT SIZE=3D2 =
    FACE=3D"Arial">anSMTPHandler.SendMessage(tdlist,TextData('[email protected]=
    m'),subject,messageBody);</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">end if ;</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">messageBody.Clear ;</FONT>
    <BR><FONT SIZE=3D2 =
    FACE=3D"Arial">messageBody.SetAllocatedSize(0);</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">subject.clear ;</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">subject.setAllocatedSize(0);</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">anSMTPHandler =3D NIL ;</FONT>
    </P>
    <UL><UL>
    <P><A NAME=3D"_MailData"><FONT SIZE=3D2 FACE=3D"Arial">-----Original =
    Message-----</FONT></A>
    <BR><B><FONT SIZE=3D2 FACE=3D"Arial">From:   Cameron Clark =
    [<A =
    HREF=3D"<a href=
    "mailto:[email protected]">mailto:[email protected]</a>"><a
    href=
    "mailto:[email protected]">mailto:[email protected]</a></A>]<=
    /FONT></B>
    <BR><B><FONT SIZE=3D2 FACE=3D"Arial">Sent:  </FONT></B> <FONT =
    SIZE=3D2 FACE=3D"Arial">Wednesday, September 08, 1999 12:31 AM</FONT>
    <BR><B><FONT SIZE=3D2 =
    FACE=3D"Arial">To:    </FONT></B> <FONT SIZE=3D2 =
    FACE=3D"Arial">Forte User Group</FONT>
    <BR><B><FONT SIZE=3D2 =
    FACE=3D"Arial">Subject:       </FONT>=
    </B> <FONT SIZE=3D2 FACE=3D"Arial">(forte-users) Sending Email from =
    Forte</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">Hi guys,</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">Just a quick question.  I am =
    wanting to send email from our Forte</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">application and am wondering what is =
    the easiest way to do this.  Any</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">ideas appreciated!</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">Thanks,</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">Cameron Clark,</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">Melbourne, Australia.</FONT>
    </P>
    <P><FONT SIZE=3D2 FACE=3D"Arial">--</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">For the archives, go to: <A =
    HREF=3D"<a href=
    "http://lists.sageit.com/forte-users">http://lists.sageit.com/forte-users</a>" =
    TARGET=3D"_blank">http://lists.sageit.com/forte-users</A> and =
    use</FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">the login: forte and the password: =
    archive. To unsubscribe, send in a new </FONT>
    <BR><FONT SIZE=3D2 FACE=3D"Arial">email the word: 'Unsubscribe' to: =
    [email protected]</FONT>
    </P>
    </UL></UL>
    </BODY>
    </HTML>
    ------_=_NextPart_001_01BEFA14.F973DD04--

Maybe you are looking for