JavaMail es una expansión de Java que facilita el envío y recepción de e-mail desde código java.
JavaMail implementa el protocolo SMTP (Simple Mail Transfer Protocol) así como los distintos tipos de conexión con servidores de correo -TLS, SSL, autentificación con usuario y password, etc [Según SantaWikipedia]
¿Qué necesitamos?
package jmail; import javax.mail.Authenticator; import javax.mail.PasswordAuthentication; /** * @web https://www.jc-mouse.net * @author Mouse */ public class SMTPAuthenticator extends Authenticator{ private String SMTP_AUTH_USER = ""; private String SMTP_AUTH_PWD = ""; public SMTPAuthenticator() {} public SMTPAuthenticator(String user , String pass) { this.SMTP_AUTH_USER = user; this.SMTP_AUTH_PWD = pass; } @Override public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(this.SMTP_AUTH_USER, this.SMTP_AUTH_PWD); } }
package jmail; import java.util.Date; import javax.mail.Message; import javax.mail.Session; import java.util.Properties; import javax.mail.Multipart; import javax.mail.Transport; import javax.swing.JOptionPane; import javax.mail.MessagingException; import javax.mail.internet.MimeMessage; import javax.mail.internet.MimeBodyPart; import javax.mail.internet.MimeMultipart; import javax.mail.internet.InternetAddress; import javax.mail.internet.AddressException; /** * @web https://www.jc-mouse.net * @author Mouse */ public class JCMail { private String from = "";//tu_correo@gmail.com private String password = "";//tu password: 123456 :) // destinatario1@hotmail.com,destinatario2@hotmail.com, destinatario_n@hotmail.com private InternetAddress[] addressTo; private String Subject = "";//titulo del mensaje private String MessageMail = "";//contenido del mensaje public JCMail(){} public void SEND() { try { Properties props = new Properties(); props.put("mail.smtp.host", "smtp.gmail.com"); props.put("mail.smtp.starttls.enable", "true"); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.user", "usuario"); props.put("mail.smtp.port", 25); // SMTPAuthenticator auth = new SMTPAuthenticator( getFrom(), getPassword() ); Session session = Session.getDefaultInstance(props, auth); session.setDebug(false); //Se crea destino y origen del mensaje MimeMessage mimemessage = new MimeMessage(session); InternetAddress addressFrom = new InternetAddress( getFrom() ); mimemessage.setFrom(addressFrom); mimemessage.setRecipients(Message.RecipientType.TO, addressTo); mimemessage.setSubject( getSubject() ); // Se crea el contenido del mensaje MimeBodyPart mimebodypart = new MimeBodyPart(); mimebodypart.setText( getMessage() ); mimebodypart.setContent( getMessage() , "text/html"); Multipart multipart = new MimeMultipart(); multipart.addBodyPart(mimebodypart); mimemessage.setContent(multipart); mimemessage.setSentDate(new Date()); Transport.send(mimemessage); JOptionPane.showMessageDialog(null, "Correo enviado. Enjoy!!!"); } catch (MessagingException ex) { System.out.println(ex); } } //remitente public void setFrom(String mail){ this.from = mail; } public String getFrom(){ return this.from; } //Contraseña public void setPassword(char[] value){ this.password = new String(value); } public String getPassword(){ return this.password; } //destinatarios public void setTo(String mails){ String[] tmp =mails.split(","); addressTo = new InternetAddress[tmp.length]; for (int i = 0; i < tmp.length; i++) { try { addressTo[i] = new InternetAddress(tmp[i]); } catch (AddressException ex) { System.out.println(ex); } } } public InternetAddress[] getTo(){ return this.addressTo; } //titulo correo public void setSubject(String value){ this.Subject = value; } public String getSubject(){ return this.Subject; } //contenido del mensaje public void setMessage(String value){ this.MessageMail = value; } public String getMessage(){ return this.MessageMail; } }
JCMail mail = new JCMail(); private void cmdSENDActionPerformed(java.awt.event.ActionEvent evt) { mail.setFrom( this.txtFROM.getText() ); mail.setPassword( this.txtPWD.getPassword() ); mail.setTo( this.txtTO.getText() ); mail.setSubject( this.txtSUBJECT.getText() ); mail.setMessage( this.txtMESSAGE.getText() ); mail.SEND(); }
Java cuenta con la clase java.lang.Math la cual contiene métodos para realizar operaciones numéricas básicas como[...]
Un SGA «Sistema de Gestión de Almacenes» es un programa informático destinado a gestionar las entradas y salidas de pro[...]
JSON es un formato de texto ligero para el intercambio de datos ampliamente usado en los Servicios Web. En este post uti[...]
Como dice un viejo dicho, «La practica hace al maestro» y en el mundo de la programación no es diferente, por eso siempr[...]
En este videotutorial se vera la creación de Interfaces Gráficas de Usuario (GUI) utilizando MatLab GUIDE herramienta vi[...]
FFmpeg es una colección de software libre capaz de decodificar, codificar, transcodificar, mux, demux, transmitir, filtr[...]