Javaプログラムを使用して電子メール(gmail)を送信するために、次のコードを使用しています。私はAuthenticationFailedException
を取得しています。私は以下のエラーを述べました。これを解決するには?どのようにこのプログラムで送信者のユーザー名、パスワードを使用するには?メール送信Javaプログラム
package internet;
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class mail
{
public static void main(String [] args)
{
String to = "[email protected]";
String from = "[email protected]";
String host = "smtp.gmail.com";
Properties properties = System.getProperties();
properties.put("mail.smtp.host", "smtp.gmail.com");
properties.put("mail.smtp.port", "587");
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");
Session session = Session.getDefaultInstance(properties);
try{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("This is the Subject Line!");
message.setText("This is actual message");
Transport.send(message);
System.out.println("hi");
System.out.println("Sent message successfully....");
}catch (MessagingException mex) {
mex.printStackTrace();
}
}
}
私はあなたが前t.sendMessage(message, addresses)
にt.connect(host, user, password)
でログイン資格情報を提供する必要があり、次のエラー
javax.mail.AuthenticationFailedException
at javax.mail.Service.connect(Service.java:267)
at javax.mail.Service.connect(Service.java:137)
at javax.mail.Service.connect(Service.java:86)
at javax.mail.Transport.send0(Transport.java:150)
at javax.mail.Transport.send(Transport.java:80)
at internet.mail.main(mail.java:59)
チェック結果をsmtp.jarを送信するための依存関係として を使用して、2つの瓶あなたのユーザー名とパスワードはどこに設定しますか?sourceid = chrome&ie = UTF-8&q = code + +送信+電子メール+(gmail)+ Java +プログラムを使用 – naresh
コード内には表示されません。 –