Javaで添付ファイル付きのメールを送信しようとしています。
添付ファイルなしでメールを送信するとメールが届きますが、添付ファイルを追加しても何も届かず、エラーメッセージも表示されません。
これは私が使用しているコードです:
public void send () throws AddressException, MessagingException{
//system properties
Properties props = new Properties();
props.put("mail.smtp.localhost", "localhost");
props.put("mail.smtp.Host",Configurations.getInstance().email_serverIp);
/*
* create some properties and get the default Session
*/
session = Session.getDefaultInstance(props, null);
//session
Session session = Session.getInstance(props, null);
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("[email protected]"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("[email protected]"));
message.setSubject("Testing Subject");
message.setText("PFA");
MimeBodyPart messageBodyPart = new MimeBodyPart();
Multipart multipart = new MimeMultipart();
generateCsvFile("/tmp/test.csv");
messageBodyPart = new MimeBodyPart();
String file = "/tmp/test.csv";
String fileName = "test.csv";
DataSource source = new FileDataSource(file);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(fileName);
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart);
System.out.println("Sending");
Transport.send(message);
System.out.println("Done");
}
private static void generateCsvFile(String sFileName)
{
try
{
FileWriter writer = new FileWriter(sFileName);
writer.append("DisplayName");
writer.append(',');
writer.append("Age");
writer.append(',');
writer.append("YOUR NAME");
writer.append(',');
writer.append('\n');
writer.append("Zou");
writer.append(',');
writer.append("26");
writer.append(',');
writer.append("zouhaier");
//generate whatever data you want
writer.flush();
writer.close();
}
catch(IOException e)
{
e.printStackTrace();
}
}
どうすればこれを修正できますか?
このような警告があるので
このコードを試してください...それはあなたを助けます....
public class SendMail {
public SendMail() throws MessagingException {
String Host = "smtp.gmail.com";
String Password = "............";
String from = "[email protected]";
String toAddress = "[email protected]";
String filename = "C:/SendAttachment.Java";
// Get system properties
Properties props = System.getProperties();
props.put("mail.smtp.Host", Host);
props.put("mail.smtps.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
Session session = Session.getInstance(props, null);
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.setRecipients(Message.RecipientType.TO, toAddress);
message.setSubject("JavaMail Attachment");
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setText("Here's the file");
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart);
messageBodyPart = new MimeBodyPart();
DataSource source = new FileDataSource(filename);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(filename);
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart);
try {
Transport tr = session.getTransport("smtps");
tr.connect(Host, from, Password);
tr.sendMessage(message, message.getAllRecipients());
System.out.println("Mail Sent Successfully");
tr.close();
} catch (SendFailedException sfe) {
System.out.println(sfe);
}
}
public static void main(String args[]){
try {
SendMail sm = new SendMail();
} catch (MessagingException ex) {
Logger.getLogger(SendMail.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
JavaMail FAQ for デバッグのヒント を参照してください。特に、プロトコルトレースは、それぞれの場合に何が起こっているかについて詳しく教えてくれます。そこにいる間、あなたはそこにいるでしょう。 Gmailを使用するためのヒントも見つけてください。
唯一の違いが実際には添付ファイルの追加だけである場合、それが認証の問題である可能性は低いようです。 sendメソッドがMessagingExceptionをスローするように宣言されているため、気付かない例外が発生する場合があります。
次のようなことを試すことができます:
File f = new File(file);
MimeBodyPart attachmentPart = new MimeBodyPart();
attachmentPart.attachFile(f);
multipart.addBodyPart(attachmentPart);
詳細については、以下を参照してください。 添付ファイル、プレーン/テキスト、およびテキスト/ hmlを含むSMTP経由で電子メールを送信する
ユーザー名とパスワードを使用してGmailにアクセスできます。ただし、アクセスはGmailアカウントによって拒否されます。
そのため、アカウント設定、パスワードセクションに移動してセキュリティレベルを変更し、確認コードのセキュリティ設定を無効にするか、古いまたは最新のGmailアプリケーションに応じてセキュリティレベルを下げる必要があります。
ローカルディレクトリにアクセスしてGmail経由で添付ファイルを送信する場合は、以下のプログラムの指示に従って、Fileオブジェクトを使用してDataSourceコンストラクタクラスに設定する必要があります。これにより、「アクセスが拒否されました」という例外が回避されます。
import Java.io.File;
import Java.io.IOException;
import Java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
public class EmailApp {
public static void main(String[] args)throws IOException {
final String username = "[email protected]";
final String password = "mypassword";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.Host", "smtp.gmail.com");
props.put("mail.smtp.port", "587");
Session session = Session.getInstance(props, new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("[email protected]"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("[email protected]"));
message.setSubject("Testing Subject");
message.setText("Dear Mail Crawler," + "\n\n No spam to my email, please!");
message.setSubject("Testing Subject");
message.setText("PFA");
MimeBodyPart messageBodyPart = new MimeBodyPart();
Multipart multipart = new MimeMultipart();
messageBodyPart = new MimeBodyPart();
String attachmentPath = "C:/TLS/logs/26-Mar-2015";
String attachmentName = "LogResults.txt";
File att = new File(new File(attachmentPath), attachmentName);
messageBodyPart.attachFile(att);
DataSource source = new FileDataSource(att);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(attachmentName);
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart);
System.out.println("Sending");
Transport.send(message);
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
電子メールメッセージは、ヘッダーと本文のセグメントで構成されます。
ヘッダー部分には、from、to、subjectが含まれます。
本体には添付ファイルが含まれています。添付ファイルの本体への持ち込みをサポートするには、タイプMultipart
が存在する必要があります。
Multipart
オブジェクトは複数の部分を保持し、各部分はBodyPart
のタイプとして表され、そのサブクラスMimeBodyPart
–はファイルをコンテンツとして受け取ることができます。
メール本文に添付ファイルを追加するために、MimeBodyPart
クラスはいくつかの便利なメソッドを提供します。
// JavaMail 1.3
MimeBodyPart attachPart = new MimeBodyPart();
String attachFile = "D:/test.pdf";
DataSource source = new FileDataSource(attachFile);
attachPart.setDataHandler(new DataHandler(source));
attachPart.setFileName(new File(attachFile).getName());
multipart.addBodyPart(attachPart);
// JavaMail 1.4
MimeBodyPart attachPart = new MimeBodyPart();
String attachFile = "D:/test.pdf";
attachPart.attachFile(attachFile);
multipart.addBodyPart(attachPart);
詳細については、このリンクを参照してください。
https://www.tutorialspoint.com/javamail_api/javamail_api_send_email_with_attachment.htm