メソッドを使用して複数の受信者にメッセージを送信したい:
message.addRecipient(Message.RecipientType.TO, String arg1);
OR
message.setRecipients(Message.RecipientType.TO,String arg1);
しかし、1つの混乱は、2番目の引数で、次のような複数のアドレスを渡す方法です。
message.addRecipient(Message.RecipientType.CC, "[email protected],[email protected],[email protected]");
OR
message.addRecipient(Message.RecipientType.CC, "[email protected];[email protected];[email protected]");
別の方法を使用してメッセージを送信することもできますが、上記の方法の目的を知りたいです。私がそれを使用できない場合(これまでのところ、上記の要件に対する答えはありませんでした)、このメソッドをメールAPIに含める必要があります。
addRecipient
を複数回呼び出すと、指定された受信者が指定された時間(TO、CC、BCC)の受信者のリストに追加されます。
例えば:
message.addRecipient(Message.RecipientType.CC, InternetAddress.parse("[email protected]"));
message.addRecipient(Message.RecipientType.CC, InternetAddress.parse("[email protected]"));
message.addRecipient(Message.RecipientType.CC, InternetAddress.parse("[email protected]"));
CCに3つのアドレスを追加します
すべてのアドレスを一度に追加する場合は、setRecipients
またはaddRecipients
を使用して、アドレスの配列を指定する必要があります
Address[] cc = new Address[] {InternetAddress.parse("[email protected]"),
InternetAddress.parse("[email protected]"),
InternetAddress.parse("[email protected]")};
message.addRecipients(Message.RecipientType.CC, cc);
InternetAddress.parse
を使用してアドレスのリストを解析することもできます
message.addRecipients(Message.RecipientType.CC,
InternetAddress.parse("[email protected],[email protected],[email protected]"));
こんにちは、このコードは私のために働いていますすべての受信者にメールを送信するためにこれを試してください
private String recipient = "[email protected] ,[email protected] ";
String[] recipientList = recipient.split(",");
InternetAddress[] recipientAddress = new InternetAddress[recipientList.length];
int counter = 0;
for (String recipient : recipientList) {
recipientAddress[counter] = new InternetAddress(recipient.trim());
counter++;
}
message.setRecipients(Message.RecipientType.TO, recipientAddress);
この方法を試してください:
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("[email protected]"));
String address = "[email protected],[email protected]";
InternetAddress[] iAdressArray = InternetAddress.parse(address);
message.setRecipients(Message.RecipientType.CC, iAdressArray);
カンマで区切られた複数のアドレスでmessage.setRecipientsメソッドを使用するだけです:
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("[email protected],[email protected],[email protected]"));
message.setRecipients(Message.RecipientType.CC, InternetAddress.parse("[email protected],[email protected],[email protected]"));
1つのアドレスのみでも問題なく動作します
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("[email protected]"));
複数のアドレスをコンマで区切って指定できます
if (cc.indexOf(',') > 0)
message.setRecipients(Message.RecipientType.CC, InternetAddress.parse(cc));
else
message.setRecipient(Message.RecipientType.CC, new InternetAddress(cc));
だから...それは何ヶ月もかかりましたが、それでも...区切り文字として「、」を使用して複数の受信者にメールを送信できます
message.setRecipients(Message.RecipientType.CC, "[email protected],[email protected],[email protected]");
大丈夫です。少なくともJavaMail 1.4.5では
InternetAddress.Parseがあなたの友達になります!以下の作業例を参照してください。
String to = "[email protected], [email protected], [email protected]";
String toCommaAndSpaces = "[email protected] [email protected], [email protected]";
Strictがtrueの場合、電子メールの RFC822 構文規則の多く(すべてではない)が実施されます。
msg.setRecipients(Message.RecipientType.CC,
InternetAddress.parse(to, true));
コンマ/スペース区切りリストを解析します。たるみをカットします。スペースで区切られたリスト、および無効なメール形式も許可されます。
msg.setRecipients(Message.RecipientType.BCC,
InternetAddress.parse(toCommaAndSpaces, false));
String[] mailAddressTo = new String[3];
mailAddressTo[0] = emailId_1;
mailAddressTo[1] = emailId_2;
mailAddressTo[2] = "[email protected]";
InternetAddress[] mailAddress_TO = new InternetAddress[mailAddressTo.length];
for (int i = 0; i < mailAddressTo.length; i++)
{
mailAddress_TO[i] = new InternetAddress(mailAddressTo[i]);
}
message.addRecipients(Message.RecipientType.TO, mailAddress_TO);ress_TO = new InternetAddress[mailAddressTo.length];
インターネット電子メールアドレスの形式( RFC 822
)
(,)
commaで区切られた一連のアドレス
javax.mail-1.4.7 parse( String[] )
は使用できません。したがって、アドレスのコンマ区切りシーケンスを InternetAddress
オブジェクトに与える必要があります。アドレスはRFC822構文に従う必要があります。
String toAddress = "[email protected],[email protected]";
InternetAddress.parse( toAddress );
(;)
セミコロンで区切られたアドレスのシーケンス" アドレスリストのグループ がデリミタとともに ";"として提供されている場合次に、splitメソッドを使用してString配列に変換し、次の関数を使用します。
String[] addressList = { "[email protected]", "[email protected]" };
String toGroup = "[email protected];[email protected]";
String[] addressList2 = toGroup.split(";");
setRecipients(message, addressList);
public static void setRecipients(Message message, Object addresslist) throws AddressException, MessagingException {
if ( addresslist instanceof String ) { // CharSequence
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse( (String) addresslist ));
} else if ( addresslist instanceof String[] ) { // String[] « Array with collection of Strings/
String[] toAddressList = (String[]) addresslist;
InternetAddress[] mailAddress_TO = new InternetAddress[ toAddressList.length ];
for (int i = 0; i < toAddressList.length; i++) {
mailAddress_TO[i] = new InternetAddress( toAddressList[i] );
}
message.setRecipients(Message.RecipientType.TO, mailAddress_TO);
}
}
完全な例:
public static Properties getMailProperties( boolean addExteraProps ) {
Properties props = new Properties();
props.put("mail.transport.protocol", MAIL_TRNSPORT_PROTOCOL);
props.put("mail.smtp.Host", MAIL_SERVER_NAME);
props.put("mail.smtp.port", MAIL_PORT);
// Sending Email to the GMail SMTP server requires authentication and SSL.
props.put("mail.smtp.auth", true);
if( ENCRYPTION_METHOD.equals("STARTTLS") ) {
props.put("mail.smtp.starttls.enable", true);
props.put("mail.smtp.socketFactory.port", SMTP_STARTTLS_PORT); // 587
} else {
props.put("mail.smtps.ssl.enable", true);
props.put("mail.smtp.socketFactory.port", SMTP_SSL_PORT); // 465
}
props.put("mail.smtp.socketFactory", SOCKETFACTORY_CLASS);
return props;
}
public static boolean sendMail(String subject, String contentType, String msg, Object recipients) throws Exception {
Properties props = getMailProperties( false );
Session mailSession = Session.getInstance(props, null);
mailSession.setDebug(true);
Message message = new MimeMessage( mailSession );
message.setFrom( new InternetAddress( USER_NAME ) );
setRecipients(message, recipients);
message.setSubject( subject );
String htmlData = "<h1>This is actual message embedded in HTML tags</h1>";
message.setContent( htmlData, "text/html");
Transport transport = mailSession.getTransport( MAIL_TRNSPORT_PROTOCOL );
transport.connect(MAIL_SERVER_NAME, Integer.valueOf(MAIL_PORT), USER_NAME, PASSWORD);
message.saveChanges(); // don't forget this
transport.sendMessage(message, message.getAllRecipients());
transport.close();
}
Appache
SimpleEmail
の使用-commons-email-1.3.1
例:email.addTo( addressList );
public static void sendSimpleMail() throws Exception {
Email email = new SimpleEmail();
email.setSmtpPort(587);
DefaultAuthenticator defaultAuthenticator = new DefaultAuthenticator( USER_NAME, PASSWORD );
email.setAuthenticator( defaultAuthenticator );
email.setDebug(false);
email.setHostName( MAIL_SERVER_NAME );
email.setFrom( USER_NAME );
email.setSubject("Hi");
email.setMsg("This is a test mail ... :-)");
//email.addTo( "[email protected]", "Yash" );
String[] toAddressList = { "[email protected]", "[email protected]" }
email.addTo( addressList );
email.setTLS(true);
email.setStartTLSEnabled( true );
email.send();
System.out.println("Mail sent!");
}
MimeMessageHelperを使用してCcとして送信する場合
List<String> emails= new ArrayList();
email.add("email1");
email.add("email2");
for (String string : emails) {
message.addCc(string);
}
複数の受信者を追加するために使用できるものと同じです。
以下の方法でn個の受信者を使用できます。
String to[] = {"[email protected]"} //Mail id you want to send;
InternetAddress[] address = new InternetAddress[to.length];
for(int i =0; i< to.length; i++)
{
address[i] = new InternetAddress(to[i]);
}
msg.setRecipients(Message.RecipientType.TO, address);
簡単な方法
String[] listofIDS={"[email protected]","[email protected]"};
for(String cc:listofIDS){
message.addRecipients(Message.RecipientType.CC,InternetAddress.parse(cc));
}