javamail 2 « Email « Java Network Q&A

Home
Java Network Q&A
1.API
2.bluetooth
3.Client
4.connection
5.Cookie
6.Development
7.Email
8.File
9.ftp
10.http
11.HttpClient
12.https
13.ip
14.Network
15.OS
16.RMI
17.Security
18.Server
19.Socket
20.tcp
21.UDP
22.url
Java Network Q&A » Email » javamail 2 

1. JavaMail Question    forums.oracle.com

Hello, I have a couple of questions about the JavaMail API. 1. Can you send an email without having a valid return address? I just want my program to send an email, I'm not interested in replies. 2. Can I send a message to any address without specifying the smtp server and port? Basically, I want to make a method like ...

2. JavaMail / Problems with outgoing mails    forums.oracle.com

Yeah, right. Maybe I should also change my organization's IT policy. Any other less brutal, vague, more precise, specific, down to earth soultion ? 'erviins' gave you a very good suggestion! It was not brutal or vague and is a good starting point to trying to find out what is wrong. How are we to know your "organization's IT policy"? You ...

3. javamail    forums.oracle.com

4. JavaMail UnsupportedDataTypeException in custom ClassLoader    forums.oracle.com

I have an application which is giving a UnsupportedDataTypeException: no object DCH for MIME type text/plain error. Now, what's important to know is that the application runs fine if I execute it from the command line like a regular Java application. So I know the code works fine with all the JAR files I have. However, I normally do not run ...

5. JavaMail UnsupportedDataTypeException in custom ClassLoader    forums.oracle.com

I have an application which is giving a UnsupportedDataTypeException: no object DCH for MIME type text/plain error. Now, what's important to know is that the application runs fine if I execute it from the command line like a regular Java application. So I know the code works fine with all the JAR files I have. However, I normally do not run ...

6. javamail question,please help me!    forums.oracle.com

final Properties pro = new Properties(); pro.put("mail.host", "182.119.172.121"); System.out.println("1111111111"); for (int i = 0; i < 1; i++) { // new Thread(new Runnable() { //public void run() { final Session session = Session.getDefaultInstance(pro, null); session.setDebug(false); System.out.println("222222222222"); Transport transport = null; try { transport = session.getTransport("smtp"); System.out.println("55555555555"); transport.connect("182.119.172.121","caol","password"); System.out.println("66666666666666"); Message tMsg = new MimeMessage(session); tMsg.setText("this is a test");

7. javamail    forums.oracle.com

Dear All, I'm now developing a web client to send email, all things was fine except when I want to set the subject encoding, I really can't get arround it, coz the javamail api I'm currently using is 1.3, and requirement won't let me change it to 1.4.1 to use the message.setSubject(subject, encoding) method. Any ideas? ar_fee

8. JavaMail    forums.oracle.com

9. Books on JavaMail    forums.oracle.com

10. Javamail 1.4 problem...    forums.oracle.com

11. Understanding JavaMail    forums.oracle.com

DEBUG: JavaMail version 1.4ea DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\j2re1.4.2_06\lib\javamail.providers (The system cannot find the file specified) DEBUG: !anyLoaded DEBUG: not loading resource: /META-INF/javamail.providers DEBUG: successfully loaded resource: /META-INF/javamail.default.providers DEBUG: Tables of loaded providers DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]} DEBUG: Providers Listed By Protocol: ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.