前提・実現したいこと
まず、前提として
Qiita(参考サイト)
Gmail API
の2つのサイトを参考にしてメールを送信させることはできています。
実現したいこととしては、
GmailAPIを使用して複数人への一斉送信です。
発生している問題・エラーメッセージ
Javaでの作成をしており、色々なサイトを調べたのですが参考になるものがなく
困っている状況です。
どうすれば複数人に送信できるのか教えてほしいです。
該当のソースコード
Java
1package com.example.demo; 2 3import java.io.ByteArrayOutputStream; 4import java.io.IOException; 5import java.io.InputStream; 6import java.io.InputStreamReader; 7import java.util.Collections; 8import java.util.List; 9import java.util.Properties; 10 11import javax.mail.MessagingException; 12import javax.mail.Session; 13import javax.mail.internet.InternetAddress; 14import javax.mail.internet.MimeMessage; 15 16import com.google.api.client.auth.oauth2.Credential; 17import com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp; 18import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver; 19import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow; 20import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets; 21import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport; 22import com.google.api.client.http.javanet.NetHttpTransport; 23import com.google.api.client.json.JsonFactory; 24import com.google.api.client.json.jackson2.JacksonFactory; 25import com.google.api.client.util.Base64; 26import com.google.api.client.util.store.FileDataStoreFactory; 27import com.google.api.services.gmail.Gmail; 28import com.google.api.services.gmail.GmailScopes; 29import com.google.api.services.gmail.model.Message; 30 31 32public class GmailTest { 33 34 private static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance(); 35 36 private static final String CREDENTIALS_FILE_PATH = "/*****.json"; // OAuthクライアントID 37 private static final List<String> SCOPES = Collections.singletonList(GmailScopes.GMAIL_SEND); // OAuthで要求する機能 38 private static final String TOKENS_DIRECTORY_PATH = "tokens"; // アクセストークンの保存場所 39 40 public static void main(String... args) { 41 42 try { 43 final NetHttpTransport TRANSPORT = GoogleNetHttpTransport.newTrustedTransport(); 44 45 // プロジェクトのOAuth2.0クライアントID読込 46 InputStream in = GmailTest.class.getResourceAsStream(CREDENTIALS_FILE_PATH); 47 GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in)); 48 49 // 送信元メアド所有者の承認を得てアクセストークン取得 50 GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(TRANSPORT, JSON_FACTORY, 51 clientSecrets, SCOPES) 52 .setDataStoreFactory(new FileDataStoreFactory(new java.io.File(TOKENS_DIRECTORY_PATH))) 53 .setAccessType("offline").setApprovalPrompt("force").build(); 54 55 LocalServerReceiver receiver = new LocalServerReceiver.Builder().setPort(8888).build(); 56 Credential credential = new AuthorizationCodeInstalledApp(flow, receiver).authorize("user"); 57 58 Gmail service = new Gmail.Builder(TRANSPORT, JSON_FACTORY, credential).setApplicationName("demo").build(); 59 60 // メール作成 61 String from = "[メールアドレス]"; 62 String to = "[メールアドレス]"; // FIXME 63 MimeMessage mimeMessage = createEmail(to, from, "テストメッセージ", "テスト"); 64 65 // メール送信 66 sendMessage(service, "me", mimeMessage); 67 68 } catch (Exception e) { 69 e.printStackTrace(); 70 } 71 } 72 73 /** 74 * メール作成と送信 75 */ 76 public static MimeMessage createEmail(String to, String from, String subject, String bodyText) 77 throws MessagingException { 78 79 Properties props = new Properties(); 80 Session session = Session.getDefaultInstance(props, null); 81 82 MimeMessage email = new MimeMessage(session); 83 84 email.setFrom(new InternetAddress(from)); 85 email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(to)); 86 email.setSubject(subject); 87 email.setText(bodyText); 88 return email; 89 } 90 91 public static Message createMessageWithEmail(MimeMessage emailContent) throws MessagingException, IOException { 92 93 ByteArrayOutputStream buffer = new ByteArrayOutputStream(); 94 emailContent.writeTo(buffer); 95 byte[] bytes = buffer.toByteArray(); 96 String encodedEmail = Base64.encodeBase64URLSafeString(bytes); 97 Message message = new Message(); 98 message.setRaw(encodedEmail); 99 return message; 100 } 101 102 public static Message sendMessage(Gmail service, String userId, MimeMessage emailContent) 103 throws MessagingException, IOException { 104 105 Message message = createMessageWithEmail(emailContent); 106 message = service.users().messages().send(userId, message).execute(); 107 108 System.out.println("Message id: " + message.getId()); 109 System.out.println(message.toPrettyString()); 110 return message; 111 } 112}
試したこと
色々なサイトを調べ参考にしました。
補足情報(FW/ツールのバージョンなど)
GmailAPIにあまり慣れておらず悩んでいる状態です。
方法をご存じの方がいましたら教えていただきたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。