Cita:
Iniciado por hualro Hola Sandivel,
Podrías dar más detalles (código, clases, métodos, etc...), así es muy difícil que alguien te pueda ayudar.
Saludos,
claro, tengo una clase llamada sendMail, y mi codigo es el siguiente:
public void sendMailAdjunto(String word,String img1,String img2)
{
String cuerpo;
cuerpo ="Correo adjunto de prueba";
String mje = "";
try
{
// Variable de ruta del Adjunto
// String filename2 ="";
// String filename3 ="";
try {
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.algo.com"); // servidor de correo
props.put("mail.smtp.auth","true");
props.put("mail.smtp.username","usuario");
props.put("mail.smtp.password","pwd");
Authenticator auth = new Authenticator(){ PasswordAuthentication pa = new PasswordAuthentication("usuario","pwd");
protected PasswordAuthentication getPasswordAuthentication()
{