Using jsp mail in outlook

I came to know that using jsp mails can be send from ms outlook as a webpage, ( ie, when the receiver view the message its looks like a normal web page) we see this in so many promotion mails,were they display ads or about the product...exactly the same i have to do.....now one of my frd done this using asp, and it can be done using jsp also settin a object
Does any one know abt this???

Hi ,
Do u want to send mails through Outlook only or u want a java smtp program to send mail that looks same as advertisment mails u get .. i e like webpage ..
Regards

Similar Messages

  • Using yahoo mail with outlook and mac mail

    I previously used entourage on my OS 10.6.8 mac but I have upgraded to os 10 and office 2011 with outlook.  When I set up outlook will yahoo mail messages only be accessible on the original device that opens them?  I have an iMac desktop with outlook, a Macair using mac mail and a Samsung tablet using yahoo mail.  I have noticed that when using mac mail only on the iMac and Macbookair, to get yahoo mail and yahoo mail on the tablet.  I can only see my yahoo mail messages on the first device that opens the yahoo mail account.  I have Yahoo mail plus.  Is there a way to fix this other than turning off the yahoo mail account on the devices I am not currently using?

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How can I read my incoming emails in one folder?Like I do in Live mail and Outlook express.

    Now we can only read emails in different folders if I am managing multiple email accounts.
    It does not feel so comfortable as we use Live mail and Outlook express.

    '''Unified Inbox for pop and Imap mail accounts:'''
    If you use the Unified folder view, this will show an Inbox with all emails from all accounts, with sub folder Inboxes for the individual Inboxes for the various accounts. Then you can choose to view the collective Inbox or the individual Inbox.
    This method can be chosen simply and quickly.
    * View > folders > Unified
    '''Setting up Pop mail accounts to use Global Inbox.'''
    Pop mail accounts can be set up to use a Global Inbox in Local Folders.
    Imap mail accounts cannot be set up to use Global Inbox, but can use the Unified view.
    To change Pop mail accounts to use Global Inbox, you would need to move all emails into Local Folders Inbox.
    Then change the settings for each pop mail account.
    Tools > Account Settings > Server Settings for the pop mail account
    click on 'Advanced' button
    select 'Inbox for a different account' and 'Global Inbox (Local Folders)
    click on OK
    You need to do this for each Pop mail account.
    Then close Thunderbird. You must do this before downloading anything otherwise the emails may continue to go to the wrong Inbox.
    Wait a few moments for Thunderbird to fully close and then restart Thunderbird.
    Please read more info on global inbox here:
    * http://kb.mozillazine.org/Global_Inbox

  • How to send mail using jsp program

    am very new to jsp and doing my final year project. i need to send mails using my jsp program.can anyone say wht to do that is wht to include to send mails using jsp program. n also a sample code to send mail using jsp program.
    Thanx in advance

    Use below script.
    <%@ page import="java.util.*, javax.mail.*, javax.mail.internet.*" %>
    <%
    Properties props = new Properties();
    props.put("mail.smtp.host", "mailserver.com");
    Session s = Session.getInstance(props,null);
    InternetAddress from = new InternetAddress("[email protected]");
    InternetAddress to = new InternetAddress([email protected]");
    MimeMessage message = new MimeMessage(s);
    message.setFrom(from);
    message.addRecipient(Message.RecipientType.TO, to);
    message.setSubject("Your subject");
    message.setText("Your text");
    Transport.send(message);
    %>{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to send a Mail using JSP using browser.

    Dear friends
    I could write a code to send a mail and execute it from a command prompt using a class file, but the same code, I converted into a JSP tags to run from a browser. I am getting compilation error. Can you please help me in solving this problem.
    I am using javamail API 1.3,JAF1.0.2
    Win2000,Websphere 3.5,HostPublisher server 3.5,IE6.0
    I shall be thankful if someone shows me the solution.

    Hello
    I hope that this is useful
    I'm using Tomacat 4.0.4 and J2SDK1.4.0_01
    Setting on conf\Server.xml
    <Resource name="mail/Session" auth="Container"
                        type="javax.mail.Session"/>
              <ResourceParams name="mail/Session">
                <parameter>
                  <name>mail.smtp.host</name>
                  <value>your hostmail server</value>
                </parameter>
              </ResourceParams>Setting on web.inf/web.xml
    <servlet>
        <servlet-name>SendMailServlet</servlet-name>
        <servlet-class>SendMailServlet</servlet-class>
      </servlet>
    <servlet-mapping>
        <servlet-name>SendMailServlet</servlet-name>
        <url-pattern>/SendMailServlet</url-pattern>
      </servlet-mapping>
    <resource-ref>
        <res-ref-name>mail/Session</res-ref-name>
        <res-type>javax.mail.Session</res-type>
        <res-auth>Container</res-auth>
      </resource-ref>jsp page example:
    <html>
    <head>
    <title>Example Mail Sending Form</title>
    </head>
    <form method="POST" action="../../SendMailServlet">
    <table>
      <tr>
        <th align="center" colspan="2">
          Enter The Email Message To Be Sent
        </th>
      </tr>
      <tr>
        <th align="right">From:</th>
        <td align="left">
          <input type="text" name="mailfrom" size="60">
        </td>
      </tr>
      <tr>
        <th align="right">To:</th>
        <td align="left">
          <input type="text" name="mailto" size="60">
        </td>
      </tr>
      <tr>
        <th align="right">Subject:</th>
        <td align="left">
          <input type="text" name="mailsubject" size="60">
        </td>
      </tr>
      <tr>
        <td colspan="2">
          <textarea name="mailcontent" rows="10" cols="80">
          </textarea>
        </td>
      </tr>
      <tr>
        <td align="right">
          <input type="submit" value="Send">
        </td>
        <td align="left">
          <input type="reset" value="Reset">
        </td>
      </tr>
    </table>
    </form>
    </body>
    </html>SendMailServelet.java:
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class SendMailServlet extends HttpServlet {
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response)
            throws IOException, ServletException
            // Acquire request parameters we need
            String from = request.getParameter("mailfrom");
            String to = request.getParameter("mailto");
            String subject = request.getParameter("mailsubject");
            String content = request.getParameter("mailcontent");
            if ((from == null) || (to == null) ||
                (subject == null) || (content == null)) {
                RequestDispatcher rd =
                    getServletContext().getRequestDispatcher("/jsp/mail/sendmail.jsp");
                rd.forward(request, response);
                return;
            // Prepare the beginning of our response
            PrintWriter writer = response.getWriter();
            response.setContentType("text/html");
            writer.println("<html>");
            writer.println("<head>");
            writer.println("<title>Example Mail Sending Results</title>");
            writer.println("</head>");
            writer.println("<body bgcolor=\"white\">");
            try {
                // Acquire our JavaMail session object
                Context initCtx = new InitialContext();
                Context envCtx = (Context) initCtx.lookup("java:comp/env");
                Session session = (Session) envCtx.lookup("mail/Session");
                // Prepare our mail message
                Message message = new MimeMessage(session);
                message.setFrom(new InternetAddress(from));
                InternetAddress dests[] = new InternetAddress[]
                    { new InternetAddress(to) };
                message.setRecipients(Message.RecipientType.TO, dests);
                message.setSubject(subject);
                message.setContent(content, "text/plain");
                // Send our mail message
                Transport.send(message);
                // Report success
                writer.println("<strong>Message successfully sent!</strong>");
            } catch (Throwable t) {
                writer.println("<font color=\"red\">");
                writer.println("ENCOUNTERED EXCEPTION:  " + t);
                writer.println("<pre>");
                t.printStackTrace(writer);
                writer.println("</pre>");
                writer.println("</font>");
            // Prepare the ending of our response
            writer.println("<br><br>");
            writer.println("<a href=\"jsp/mail/sendmail.jsp\">Create a new message</a><br>");
            writer.println("</body>");
            writer.println("</html>");       
    }Ciao
    Riccardo

  • Sending mail to outlook using ABAP objects

    Hi,
    I have used ABAP objects to send a mail to outlook.
    I am getting the mail properly except body part.
    Here I am appending 3 items to body.But in the mail i am getting only the last appended line item.
    Please suggest the solution.I am hereby providing the code.
    LR_MAIL_DATA->SUBJECT = 'Hi'.
    **- To recipient (may be more)
        LV_TO-ADDRESS = WA_REGUH-SMTP_ADDR.
        LV_TO-NAME = WA_REGUH-ZNME1.
        APPEND LV_TO TO LR_MAIL_DATA->TO.
    **- Email Body (HTML)
        MOVE 'text/html' TO LS_STRUC_MAIL-MIME_TYPE.
        CONCATENATE '<br>The Following Payment <br>' INTO TEMP_BODY.
        MOVE TEMP_BODY TO LS_STRUC_MAIL-CONTENT_ASCII.
        APPEND LS_STRUC_MAIL TO LR_MAIL_DATA->BODY.
        CLEAR TEMP_BODY.
        MOVE '<br>The Details of the payment are as follows<br>' TO TEMP_BODY.
        MOVE TEMP_BODY TO LS_STRUC_MAIL-CONTENT_ASCII.
        APPEND LS_STRUC_MAIL TO LR_MAIL_DATA->BODY.
        CLEAR TEMP_BODY.
    **- Send Email
        LV_SEND_REQUEST = CL_CRM_EMAIL_UTILITY_BASE=>SEND_EMAIL( IV_MAIL_DATA = LR_MAIL_DATA ).
    Edited by: rama krishna vishnubhatla on Mar 30, 2009 2:47 PM
    Edited by: rama krishna vishnubhatla on Mar 30, 2009 2:50 PM

    Hi,
    I suggest you can have a look in the example program BCS_EXAMPLE_1 for sending mail using the class CL_DOCUMENT_BCS.
    Try for other example program also by searching with BCS_* in se38.
    Regards,
    Ankur

  • How to skip dialogue box which ask you to confirm the operation when your used labview to send an e-mail from Outlook?

    I'm using Labview to send an e-mail from outlook and everytime I got a dialogue box which inform that a software is trying to send an e-mail. To send this e-mail I have to confirm operation. How can I avoid this dialogue box ?

    I don't know what code you're using but the attached VI works with my version of Outlook and doesn't have any pop-up messages. I downloaded it from somewhere a while ago but don't remember where it was from.
    Attachments:
    Email_sender.vi ‏54 KB

  • Need to send mail & upload files using JSP

    hi, got a lot of issues,.. just starting out as a developer.. so here goes.
    1st Need to send mail & upload files to server using JSP(tomcat).. an example to demo it would be nice.
    thanx in advance

    Look at this for email:
    http://forum.java.sun.com/thread.jspa?forumID=45&threadID=285950
    and go to:
    http://servlets.com/cos/
    for a package to upload files.

  • Check Version of outlook installed using jsp

    Hi,
    Is there any way to find out using JSP what version of outlook is installed on user's machine ?

    No. Remember JSPs do ALL THEIR WORK on the server. All you will ever get is an HTTP Request. If it's not in the request, it's not information you have access to.
    You could always ask them in a form what version of Outlook they have. Then you'd know.

  • Hello i would like to stop using outlook (office 2011) and use instead "mail": how can i transfer the database?

    hello i would like to stop using outlook (office 2011) and use instead "mail": how can i transfer the database?

    Hello Sylviefrombuenosaires, here is a link from macworld that can solve your question. Try reading this.
    http://www.macworld.com/article/158112/2011/02/export_outlook_ical.html
    Carlos

  • I use Apple Mail and dislike Outlook.  If I create a note in Apple Mail, move it to desktop for easy access and then open the note, it opens in Outlook.  How do I stop Outlook from opening?  Do I need to uninstall Outlook?  Will it disrupt other software?

    I use Apple Mail and dislike Outlook.  If I create a note in Apple Mail, move it to my desktop for easy access and then open the note, it opens in Outlook.  How do I stop Outlook from opening?  Do I need to uninstall Outlook?  Will it disrupt other software?

    Open Apple Mail, and open Preferences (under Mail in the Menu Bar).  On the General tab, check the "Default Email Reader" and set it to Mail (6.6).

  • HT4863 Can I use g-mail rather than outlook?

    Can I use g-mail rather than outlook with icloud?

    Welcome to the Apple Support Communities
    Outlook is a mail program, and Gmail is a mail service. You can't use an iCloud mail with Gmail because Gmail can only be used with Google mail. If you don't want to use Outlook, you can set up your iCloud mail using this information > http://support.apple.com/kb/HT4864?viewlocale=en_US
    Also, you can access to your iCloud email on http://www.icloud.com

  • Differences between Apple Mail and Outlook using EWS

    I know that this issue has been beat to death, so I'm requesting some very specific information to help with troubleshooting. My work has an uncooperative IT department that has indicated if I do the research myself, they will see if they can fix whatever settings are off in Exchange.
    Details:
    I'm using 10.9.3 and trying to connect to an Exchange 2010 server. When using Outlook 2011, everything works perfectly, when using ActiveSync on iPhones and iPads, everything works perfectly, but everything fails when using Apple Mail.
    When using AutoDiscover with Apple Mail, it sets both internal and external servers to webmail.domain.edu, which ends up not working. After some looking around, I set the internal server to xxx-xxx-xxx-02.domain.edu and it starts working perfectly, as long as I'm accessing from within the network. Accessing outside the network results in errors.
    Connecting to the Exchange server from my school works perfectly.
    So my question boils to: What Exchange Server 2010 or EWS settings may make it possible for Outlook 2011 to easily access anywhere, but Apple Mail to fail when AutoDiscover is used anywhere and fail when manual server information is entered and attempted to access outside the network? Absolutely any leads would be appreciated.
    I've run Microsoft Remote Connectivity Analyzer and it's worked perfectly.
    Relevant log portions from failures (with certain information scrubbed)
    When AutoDiscover is used:
    <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006>
        <Response>
            <Error Time="11:10:44.4955481" Id="1505556818">
                <ErrorCode>600</ErrorCode>
                <Message>Invalid Request</Message>
                <DebugData/>
            </Error>
        </Response>
    </Autodiscover>
    When internal server is manually entered and attempted to access outside the network (works inside the network)
    2014-06-02 11:08:29.641 Mail[8898:9303] EXCHANGE -[SOAPRequest:0x7fe52f462c10 connection:didFailWithError:] https://domain%[email protected]/EWS/Exchange.asmx//domain%[email protected]/EWS/Exchange.asmx ERROR
    NSURLErrorDomain -1003 A server with the specified hostname could not be found.
    I'd love any brainstorming thoughts. Anything that could help me would be much appreciated. Thank you.

    We are running Exchange 2013 here with auto discovery enabled.  We have checked all the MS documentation and our auto discovery is stop correctly, auto discovery does work as the internal server is discovered however as the first post describes email isn't working with outside the internal network without a VPN connected.  One of the guys is leaning towards it being a TLS issue but could just be a stab in the dark.  I've got 3 people from our IT department as well as myself looking into the issue and if we find out what is actually going on, I'll post. 

  • Should I use Windows Live Mail or Outlook Express ...

    I have always used Windows Live Mail, as it is a very simple and pleasant program to use - great graphics, interface and reminders.
    I found Outlook way too fiddly and technical, with a very boring interface and comparatively poor reminders that email has arrived.
    However, since getting my E71 setup with Nokia Messaging, I have overcome this for the sake of being able to sync my contacts and messages - Outlook 2007 is now set as my default browser.
    This was ok, but now when I use Windows Live Messenger I get email reminders up - and clicking on those takes me into Windows Live Mail.
    I just want one, streamlined email/messenger service - one of these email managers must be deleted!
    - Can I sync my E71 into Windows Live Mail instead of Outlook?
    OR
    - Can I replace Windows Live Mail with Outlook 2007, as the email manager used by Windows Live Messenger to open emails?
    I want everything done with one email browser!
    Message Edited by alexjholland on 23-Aug-2009 02:31 AM

    You can use iCloud Mail with Windows Live Mail, but not Calendars or Contacts.
    If you want to use iCloud on Windows download EMClient, you can access the core services (Mail, Calendars and Contacts) using it. Installation and configuration will be manual.

  • When i use the mail on my i phone and outlook simultaneousaly, the outlook does not download emails and says "account already being accessed", i want both to work together, please help.

    when i use the mail on my i phone and outlook simultaneousaly, the outlook does not download emails and says "account already being accessed", i want both to work together, please help.

    This is the ipod touch forum

Maybe you are looking for