Gmail API ব্যবহার করে ইমেল পাঠানোর দুটি উপায় রয়েছে:
- আপনি
messages.send
পদ্ধতি ব্যবহার করে সরাসরি এটি পাঠাতে পারেন। - আপনি
drafts.send
পদ্ধতি ব্যবহার করে একটি খসড়া থেকে এটি পাঠাতে পারেন।
ইমেলগুলি একটি বার্তা সংস্থানের raw
সম্পত্তির মধ্যে base64url এনকোড করা স্ট্রিং হিসাবে পাঠানো হয়। একটি ইমেল পাঠানোর জন্য উচ্চ-স্তরের কর্মপ্রবাহ হল:
- কিছু সুবিধাজনক উপায়ে ইমেল সামগ্রী তৈরি করুন এবং এটি একটি base64url স্ট্রিং হিসাবে এনকোড করুন।
- একটি নতুন বার্তা সংস্থান তৈরি করুন এবং আপনার তৈরি করা base64url স্ট্রিং-এ এর
raw
সম্পত্তি সেট করুন। - বার্তা পাঠাতে কল
messages.send
, অথবা, যদি একটি খসড়া পাঠান,drafts.send
.
আপনার পছন্দের ক্লায়েন্ট লাইব্রেরি এবং প্রোগ্রামিং ভাষার উপর নির্ভর করে এই কর্মপ্রবাহের বিবরণ পরিবর্তিত হতে পারে।
বার্তা তৈরি করা হচ্ছে
Gmail API-এর জন্য RFC 2822- এর সাথে সঙ্গতিপূর্ণ এবং base64url স্ট্রিং হিসাবে এনকোড করা MIME ইমেল বার্তা প্রয়োজন৷ অনেক প্রোগ্রামিং ভাষার লাইব্রেরি বা ইউটিলিটি রয়েছে যা MIME বার্তা তৈরি এবং এনকোড করার প্রক্রিয়াকে সহজ করে। নিম্নলিখিত কোড উদাহরণগুলি বিভিন্ন ভাষার জন্য Google API-এর ক্লায়েন্ট লাইব্রেরি ব্যবহার করে কীভাবে একটি MIME বার্তা তৈরি করতে হয় তা প্রদর্শন করে।
জাভা
javax.mail.internet
প্যাকেজে MimeMessage
ক্লাসের মাধ্যমে একটি ইমেল বার্তা তৈরি করা অনেক সহজ করা যেতে পারে। নিম্নলিখিত উদাহরণ দেখায় কিভাবে ইমেল বার্তা তৈরি করতে হয়, শিরোনাম সহ:
import java.util.Properties; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; /* Class to demonstrate the use of Gmail Create Email API */ public class CreateEmail { /** * Create a MimeMessage using the parameters provided. * * @param toEmailAddress email address of the receiver * @param fromEmailAddress email address of the sender, the mailbox account * @param subject subject of the email * @param bodyText body text of the email * @return the MimeMessage to be used to send email * @throws MessagingException - if a wrongly formatted address is encountered. */ public static MimeMessage createEmail(String toEmailAddress, String fromEmailAddress, String subject, String bodyText) throws MessagingException { Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(subject); email.setText(bodyText); return email; } }
পরবর্তী ধাপ হল MimeMessage
এনকোড করা, একটি Message
অবজেক্ট ইনস্ট্যান্ট করা, এবং base64url এনকোড করা মেসেজ স্ট্রিংটিকে raw
সম্পত্তির মান হিসাবে সেট করা।
import com.google.api.services.gmail.model.Message; import java.io.ByteArrayOutputStream; import java.io.IOException; import javax.mail.MessagingException; import javax.mail.internet.MimeMessage; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Create Message API */ public class CreateMessage { /** * Create a message from an email. * * @param emailContent Email to be set to raw of message * @return a message containing a base64url encoded email * @throws IOException - if service account credentials file not found. * @throws MessagingException - if a wrongly formatted address is encountered. */ public static Message createMessageWithEmail(MimeMessage emailContent) throws MessagingException, IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); emailContent.writeTo(buffer); byte[] bytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(bytes); Message message = new Message(); message.setRaw(encodedEmail); return message; } }
পাইথন
নিম্নলিখিত কোড নমুনা একটি MIME বার্তা তৈরি করে, একটি base64url স্ট্রিং-এ এনকোডিং এবং Message
সংস্থানের raw
ক্ষেত্রে এটিকে বরাদ্দ করে দেখায়:
import base64 from email.message import EmailMessage import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_create_draft(): """Create and insert a draft email. Print the returned draft's message and id. Returns: Draft object, including draft id and message meta data. Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: # create gmail api client service = build("gmail", "v1", credentials=creds) message = EmailMessage() message.set_content("This is automated draft mail") message["To"] = "gduser1@workspacesamples.dev" message["From"] = "gduser2@workspacesamples.dev" message["Subject"] = "Automated draft" # encoded message encoded_message = base64.urlsafe_b64encode(message.as_bytes()).decode() create_message = {"message": {"raw": encoded_message}} # pylint: disable=E1101 draft = ( service.users() .drafts() .create(userId="me", body=create_message) .execute() ) print(f'Draft id: {draft["id"]}\nDraft message: {draft["message"]}') except HttpError as error: print(f"An error occurred: {error}") draft = None return draft if __name__ == "__main__": gmail_create_draft()
সংযুক্তি সহ বার্তা তৈরি করা
সংযুক্তি সহ একটি বার্তা তৈরি করা অন্য কোনও বার্তা তৈরি করার মতো, তবে ফাইলটিকে বহু-অংশের MIME বার্তা হিসাবে আপলোড করার প্রক্রিয়াটি প্রোগ্রামিং ভাষার উপর নির্ভর করে। নিম্নলিখিত কোড উদাহরণগুলি একটি সংযুক্তি সহ একটি মাল্টি-পার্ট MIME বার্তা তৈরি করার সম্ভাব্য উপায়গুলি প্রদর্শন করে৷
জাভা
নিম্নলিখিত উদাহরণটি দেখায় কিভাবে একটি মাল্টি-পার্ট MIME বার্তা তৈরি করতে হয়, এনকোডিং এবং অ্যাসাইনমেন্ট ধাপগুলি উপরের মতই।
import com.google.api.client.googleapis.json.GoogleJsonError; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; import com.google.api.services.gmail.model.Draft; import com.google.api.services.gmail.model.Message; import com.google.auth.http.HttpCredentialsAdapter; import com.google.auth.oauth2.GoogleCredentials; import java.io.ByteArrayOutputStream; 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.MessagingException; import javax.mail.Multipart; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeBodyPart; import javax.mail.internet.MimeMessage; import javax.mail.internet.MimeMultipart; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Create Draft with attachment API */ public class CreateDraftWithAttachment { /** * Create a draft email with attachment. * * @param fromEmailAddress - Email address to appear in the from: header. * @param toEmailAddress - Email address of the recipient. * @param file - Path to the file to be attached. * @return the created draft, {@code null} otherwise. * @throws MessagingException - if a wrongly formatted address is encountered. * @throws IOException - if service account credentials file not found. */ public static Draft createDraftMessageWithAttachment(String fromEmailAddress, String toEmailAddress, File file) throws MessagingException, IOException { /* Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for your application.*/ GoogleCredentials credentials = GoogleCredentials.getApplicationDefault() .createScoped(GmailScopes.GMAIL_COMPOSE); HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials); // Create the gmail API client Gmail service = new Gmail.Builder(new NetHttpTransport(), GsonFactory.getDefaultInstance(), requestInitializer) .setApplicationName("Gmail samples") .build(); // Create the email content String messageSubject = "Test message"; String bodyText = "lorem ipsum."; // Encode as MIME message Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(messageSubject); MimeBodyPart mimeBodyPart = new MimeBodyPart(); mimeBodyPart.setContent(bodyText, "text/plain"); Multipart multipart = new MimeMultipart(); multipart.addBodyPart(mimeBodyPart); mimeBodyPart = new MimeBodyPart(); DataSource source = new FileDataSource(file); mimeBodyPart.setDataHandler(new DataHandler(source)); mimeBodyPart.setFileName(file.getName()); multipart.addBodyPart(mimeBodyPart); email.setContent(multipart); // Encode and wrap the MIME message into a gmail message ByteArrayOutputStream buffer = new ByteArrayOutputStream(); email.writeTo(buffer); byte[] rawMessageBytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(rawMessageBytes); Message message = new Message(); message.setRaw(encodedEmail); try { // Create the draft message Draft draft = new Draft(); draft.setMessage(message); draft = service.users().drafts().create("me", draft).execute(); System.out.println("Draft id: " + draft.getId()); System.out.println(draft.toPrettyString()); return draft; } catch (GoogleJsonResponseException e) { // TODO(developer) - handle error appropriately GoogleJsonError error = e.getDetails(); if (error.getCode() == 403) { System.err.println("Unable to create draft: " + e.getDetails()); } else { throw e; } } return null; } }
পাইথন
আগের উদাহরণের মতো, এই উদাহরণটি বার্তাটিকে base64url-এ এনকোডিং এবং Message
সংস্থানের raw
ক্ষেত্রে বরাদ্দ করাও পরিচালনা করে।
import base64 import mimetypes import os from email.message import EmailMessage from email.mime.audio import MIMEAudio from email.mime.base import MIMEBase from email.mime.image import MIMEImage from email.mime.text import MIMEText import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_create_draft_with_attachment(): """Create and insert a draft email with attachment. Print the returned draft's message and id. Returns: Draft object, including draft id and message meta data. Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: # create gmail api client service = build("gmail", "v1", credentials=creds) mime_message = EmailMessage() # headers mime_message["To"] = "gduser1@workspacesamples.dev" mime_message["From"] = "gduser2@workspacesamples.dev" mime_message["Subject"] = "sample with attachment" # text mime_message.set_content( "Hi, this is automated mail with attachment.Please do not reply." ) # attachment attachment_filename = "photo.jpg" # guessing the MIME type type_subtype, _ = mimetypes.guess_type(attachment_filename) maintype, subtype = type_subtype.split("/") with open(attachment_filename, "rb") as fp: attachment_data = fp.read() mime_message.add_attachment(attachment_data, maintype, subtype) encoded_message = base64.urlsafe_b64encode(mime_message.as_bytes()).decode() create_draft_request_body = {"message": {"raw": encoded_message}} # pylint: disable=E1101 draft = ( service.users() .drafts() .create(userId="me", body=create_draft_request_body) .execute() ) print(f'Draft id: {draft["id"]}\nDraft message: {draft["message"]}') except HttpError as error: print(f"An error occurred: {error}") draft = None return draft def build_file_part(file): """Creates a MIME part for a file. Args: file: The path to the file to be attached. Returns: A MIME part that can be attached to a message. """ content_type, encoding = mimetypes.guess_type(file) if content_type is None or encoding is not None: content_type = "application/octet-stream" main_type, sub_type = content_type.split("/", 1) if main_type == "text": with open(file, "rb"): msg = MIMEText("r", _subtype=sub_type) elif main_type == "image": with open(file, "rb"): msg = MIMEImage("r", _subtype=sub_type) elif main_type == "audio": with open(file, "rb"): msg = MIMEAudio("r", _subtype=sub_type) else: with open(file, "rb"): msg = MIMEBase(main_type, sub_type) msg.set_payload(file.read()) filename = os.path.basename(file) msg.add_header("Content-Disposition", "attachment", filename=filename) return msg if __name__ == "__main__": gmail_create_draft_with_attachment()
বার্তা পাঠানো হচ্ছে
একবার আপনি একটি বার্তা তৈরি করে নিলে, আপনি messages.send
এ কলের অনুরোধের বডিতে এটি সরবরাহ করে পাঠাতে পারেন, যেমনটি নিম্নলিখিত উদাহরণগুলিতে প্রদর্শিত হয়েছে৷
জাভা
import com.google.api.client.googleapis.json.GoogleJsonError; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; import com.google.api.services.gmail.model.Message; import com.google.auth.http.HttpCredentialsAdapter; import com.google.auth.oauth2.GoogleCredentials; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.Properties; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Send Message API */ public class SendMessage { /** * Send an email from the user's mailbox to its recipient. * * @param fromEmailAddress - Email address to appear in the from: header * @param toEmailAddress - Email address of the recipient * @return the sent message, {@code null} otherwise. * @throws MessagingException - if a wrongly formatted address is encountered. * @throws IOException - if service account credentials file not found. */ public static Message sendEmail(String fromEmailAddress, String toEmailAddress) throws MessagingException, IOException { /* Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for your application.*/ GoogleCredentials credentials = GoogleCredentials.getApplicationDefault() .createScoped(GmailScopes.GMAIL_SEND); HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials); // Create the gmail API client Gmail service = new Gmail.Builder(new NetHttpTransport(), GsonFactory.getDefaultInstance(), requestInitializer) .setApplicationName("Gmail samples") .build(); // Create the email content String messageSubject = "Test message"; String bodyText = "lorem ipsum."; // Encode as MIME message Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(messageSubject); email.setText(bodyText); // Encode and wrap the MIME message into a gmail message ByteArrayOutputStream buffer = new ByteArrayOutputStream(); email.writeTo(buffer); byte[] rawMessageBytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(rawMessageBytes); Message message = new Message(); message.setRaw(encodedEmail); try { // Create send message message = service.users().messages().send("me", message).execute(); System.out.println("Message id: " + message.getId()); System.out.println(message.toPrettyString()); return message; } catch (GoogleJsonResponseException e) { // TODO(developer) - handle error appropriately GoogleJsonError error = e.getDetails(); if (error.getCode() == 403) { System.err.println("Unable to send message: " + e.getDetails()); } else { throw e; } } return null; } }
পাইথন
import base64 from email.message import EmailMessage import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_send_message(): """Create and send an email message Print the returned message id Returns: Message object, including message id Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: service = build("gmail", "v1", credentials=creds) message = EmailMessage() message.set_content("This is automated draft mail") message["To"] = "gduser1@workspacesamples.dev" message["From"] = "gduser2@workspacesamples.dev" message["Subject"] = "Automated draft" # encoded message encoded_message = base64.urlsafe_b64encode(message.as_bytes()).decode() create_message = {"raw": encoded_message} # pylint: disable=E1101 send_message = ( service.users() .messages() .send(userId="me", body=create_message) .execute() ) print(f'Message Id: {send_message["id"]}') except HttpError as error: print(f"An error occurred: {error}") send_message = None return send_message if __name__ == "__main__": gmail_send_message()
আপনি যদি একটি উত্তর পাঠানোর চেষ্টা করছেন এবং ইমেলটি থ্রেড করতে চান তবে নিশ্চিত করুন যে:
-
Subject
শিরোনাম মেলে -
References
এবংIn-Reply-To
হেডারগুলি RFC 2822 স্ট্যান্ডার্ড অনুসরণ করে।
একটি খসড়া থেকে একটি বার্তা পাঠানোর তথ্যের জন্য, খসড়া তৈরি করা দেখুন।
,Gmail API ব্যবহার করে ইমেল পাঠানোর দুটি উপায় রয়েছে:
- আপনি
messages.send
পদ্ধতি ব্যবহার করে সরাসরি এটি পাঠাতে পারেন। - আপনি
drafts.send
পদ্ধতি ব্যবহার করে একটি খসড়া থেকে এটি পাঠাতে পারেন।
ইমেলগুলি একটি বার্তা সংস্থানের raw
সম্পত্তির মধ্যে base64url এনকোড করা স্ট্রিং হিসাবে পাঠানো হয়। একটি ইমেল পাঠানোর জন্য উচ্চ-স্তরের কর্মপ্রবাহ হল:
- কিছু সুবিধাজনক উপায়ে ইমেল সামগ্রী তৈরি করুন এবং এটি একটি base64url স্ট্রিং হিসাবে এনকোড করুন।
- একটি নতুন বার্তা সংস্থান তৈরি করুন এবং আপনার তৈরি করা base64url স্ট্রিং-এ এর
raw
সম্পত্তি সেট করুন। - বার্তা পাঠাতে কল
messages.send
, অথবা, যদি একটি খসড়া পাঠান,drafts.send
.
আপনার পছন্দের ক্লায়েন্ট লাইব্রেরি এবং প্রোগ্রামিং ভাষার উপর নির্ভর করে এই কর্মপ্রবাহের বিবরণ পরিবর্তিত হতে পারে।
বার্তা তৈরি করা হচ্ছে
Gmail API-এর জন্য RFC 2822- এর সাথে সঙ্গতিপূর্ণ এবং base64url স্ট্রিং হিসাবে এনকোড করা MIME ইমেল বার্তা প্রয়োজন৷ অনেক প্রোগ্রামিং ভাষার লাইব্রেরি বা ইউটিলিটি রয়েছে যা MIME বার্তা তৈরি এবং এনকোড করার প্রক্রিয়াকে সহজ করে। নিম্নলিখিত কোড উদাহরণগুলি বিভিন্ন ভাষার জন্য Google API-এর ক্লায়েন্ট লাইব্রেরি ব্যবহার করে কীভাবে একটি MIME বার্তা তৈরি করতে হয় তা প্রদর্শন করে।
জাভা
javax.mail.internet
প্যাকেজে MimeMessage
ক্লাসের মাধ্যমে একটি ইমেল বার্তা তৈরি করা অনেক সহজ করা যেতে পারে। নিম্নলিখিত উদাহরণ দেখায় কিভাবে ইমেল বার্তা তৈরি করতে হয়, শিরোনাম সহ:
import java.util.Properties; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; /* Class to demonstrate the use of Gmail Create Email API */ public class CreateEmail { /** * Create a MimeMessage using the parameters provided. * * @param toEmailAddress email address of the receiver * @param fromEmailAddress email address of the sender, the mailbox account * @param subject subject of the email * @param bodyText body text of the email * @return the MimeMessage to be used to send email * @throws MessagingException - if a wrongly formatted address is encountered. */ public static MimeMessage createEmail(String toEmailAddress, String fromEmailAddress, String subject, String bodyText) throws MessagingException { Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(subject); email.setText(bodyText); return email; } }
পরবর্তী ধাপ হল MimeMessage
এনকোড করা, একটি Message
অবজেক্ট ইনস্ট্যান্ট করা, এবং base64url এনকোড করা মেসেজ স্ট্রিংটিকে raw
সম্পত্তির মান হিসাবে সেট করা।
import com.google.api.services.gmail.model.Message; import java.io.ByteArrayOutputStream; import java.io.IOException; import javax.mail.MessagingException; import javax.mail.internet.MimeMessage; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Create Message API */ public class CreateMessage { /** * Create a message from an email. * * @param emailContent Email to be set to raw of message * @return a message containing a base64url encoded email * @throws IOException - if service account credentials file not found. * @throws MessagingException - if a wrongly formatted address is encountered. */ public static Message createMessageWithEmail(MimeMessage emailContent) throws MessagingException, IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); emailContent.writeTo(buffer); byte[] bytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(bytes); Message message = new Message(); message.setRaw(encodedEmail); return message; } }
পাইথন
নিম্নলিখিত কোড নমুনা একটি MIME বার্তা তৈরি করে, একটি base64url স্ট্রিং-এ এনকোডিং এবং Message
সংস্থানের raw
ক্ষেত্রে এটিকে বরাদ্দ করে দেখায়:
import base64 from email.message import EmailMessage import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_create_draft(): """Create and insert a draft email. Print the returned draft's message and id. Returns: Draft object, including draft id and message meta data. Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: # create gmail api client service = build("gmail", "v1", credentials=creds) message = EmailMessage() message.set_content("This is automated draft mail") message["To"] = "gduser1@workspacesamples.dev" message["From"] = "gduser2@workspacesamples.dev" message["Subject"] = "Automated draft" # encoded message encoded_message = base64.urlsafe_b64encode(message.as_bytes()).decode() create_message = {"message": {"raw": encoded_message}} # pylint: disable=E1101 draft = ( service.users() .drafts() .create(userId="me", body=create_message) .execute() ) print(f'Draft id: {draft["id"]}\nDraft message: {draft["message"]}') except HttpError as error: print(f"An error occurred: {error}") draft = None return draft if __name__ == "__main__": gmail_create_draft()
সংযুক্তি সহ বার্তা তৈরি করা
সংযুক্তি সহ একটি বার্তা তৈরি করা অন্য কোনও বার্তা তৈরি করার মতো, তবে ফাইলটিকে বহু-অংশের MIME বার্তা হিসাবে আপলোড করার প্রক্রিয়াটি প্রোগ্রামিং ভাষার উপর নির্ভর করে। নিম্নলিখিত কোড উদাহরণগুলি একটি সংযুক্তি সহ একটি মাল্টি-পার্ট MIME বার্তা তৈরি করার সম্ভাব্য উপায়গুলি প্রদর্শন করে৷
জাভা
নিম্নলিখিত উদাহরণটি দেখায় কিভাবে একটি মাল্টি-পার্ট MIME বার্তা তৈরি করতে হয়, এনকোডিং এবং অ্যাসাইনমেন্ট ধাপগুলি উপরের মতই।
import com.google.api.client.googleapis.json.GoogleJsonError; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; import com.google.api.services.gmail.model.Draft; import com.google.api.services.gmail.model.Message; import com.google.auth.http.HttpCredentialsAdapter; import com.google.auth.oauth2.GoogleCredentials; import java.io.ByteArrayOutputStream; 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.MessagingException; import javax.mail.Multipart; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeBodyPart; import javax.mail.internet.MimeMessage; import javax.mail.internet.MimeMultipart; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Create Draft with attachment API */ public class CreateDraftWithAttachment { /** * Create a draft email with attachment. * * @param fromEmailAddress - Email address to appear in the from: header. * @param toEmailAddress - Email address of the recipient. * @param file - Path to the file to be attached. * @return the created draft, {@code null} otherwise. * @throws MessagingException - if a wrongly formatted address is encountered. * @throws IOException - if service account credentials file not found. */ public static Draft createDraftMessageWithAttachment(String fromEmailAddress, String toEmailAddress, File file) throws MessagingException, IOException { /* Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for your application.*/ GoogleCredentials credentials = GoogleCredentials.getApplicationDefault() .createScoped(GmailScopes.GMAIL_COMPOSE); HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials); // Create the gmail API client Gmail service = new Gmail.Builder(new NetHttpTransport(), GsonFactory.getDefaultInstance(), requestInitializer) .setApplicationName("Gmail samples") .build(); // Create the email content String messageSubject = "Test message"; String bodyText = "lorem ipsum."; // Encode as MIME message Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(messageSubject); MimeBodyPart mimeBodyPart = new MimeBodyPart(); mimeBodyPart.setContent(bodyText, "text/plain"); Multipart multipart = new MimeMultipart(); multipart.addBodyPart(mimeBodyPart); mimeBodyPart = new MimeBodyPart(); DataSource source = new FileDataSource(file); mimeBodyPart.setDataHandler(new DataHandler(source)); mimeBodyPart.setFileName(file.getName()); multipart.addBodyPart(mimeBodyPart); email.setContent(multipart); // Encode and wrap the MIME message into a gmail message ByteArrayOutputStream buffer = new ByteArrayOutputStream(); email.writeTo(buffer); byte[] rawMessageBytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(rawMessageBytes); Message message = new Message(); message.setRaw(encodedEmail); try { // Create the draft message Draft draft = new Draft(); draft.setMessage(message); draft = service.users().drafts().create("me", draft).execute(); System.out.println("Draft id: " + draft.getId()); System.out.println(draft.toPrettyString()); return draft; } catch (GoogleJsonResponseException e) { // TODO(developer) - handle error appropriately GoogleJsonError error = e.getDetails(); if (error.getCode() == 403) { System.err.println("Unable to create draft: " + e.getDetails()); } else { throw e; } } return null; } }
পাইথন
আগের উদাহরণের মতো, এই উদাহরণটি বার্তাটিকে base64url-এ এনকোডিং এবং Message
সংস্থানের raw
ক্ষেত্রে বরাদ্দ করাও পরিচালনা করে।
import base64 import mimetypes import os from email.message import EmailMessage from email.mime.audio import MIMEAudio from email.mime.base import MIMEBase from email.mime.image import MIMEImage from email.mime.text import MIMEText import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_create_draft_with_attachment(): """Create and insert a draft email with attachment. Print the returned draft's message and id. Returns: Draft object, including draft id and message meta data. Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: # create gmail api client service = build("gmail", "v1", credentials=creds) mime_message = EmailMessage() # headers mime_message["To"] = "gduser1@workspacesamples.dev" mime_message["From"] = "gduser2@workspacesamples.dev" mime_message["Subject"] = "sample with attachment" # text mime_message.set_content( "Hi, this is automated mail with attachment.Please do not reply." ) # attachment attachment_filename = "photo.jpg" # guessing the MIME type type_subtype, _ = mimetypes.guess_type(attachment_filename) maintype, subtype = type_subtype.split("/") with open(attachment_filename, "rb") as fp: attachment_data = fp.read() mime_message.add_attachment(attachment_data, maintype, subtype) encoded_message = base64.urlsafe_b64encode(mime_message.as_bytes()).decode() create_draft_request_body = {"message": {"raw": encoded_message}} # pylint: disable=E1101 draft = ( service.users() .drafts() .create(userId="me", body=create_draft_request_body) .execute() ) print(f'Draft id: {draft["id"]}\nDraft message: {draft["message"]}') except HttpError as error: print(f"An error occurred: {error}") draft = None return draft def build_file_part(file): """Creates a MIME part for a file. Args: file: The path to the file to be attached. Returns: A MIME part that can be attached to a message. """ content_type, encoding = mimetypes.guess_type(file) if content_type is None or encoding is not None: content_type = "application/octet-stream" main_type, sub_type = content_type.split("/", 1) if main_type == "text": with open(file, "rb"): msg = MIMEText("r", _subtype=sub_type) elif main_type == "image": with open(file, "rb"): msg = MIMEImage("r", _subtype=sub_type) elif main_type == "audio": with open(file, "rb"): msg = MIMEAudio("r", _subtype=sub_type) else: with open(file, "rb"): msg = MIMEBase(main_type, sub_type) msg.set_payload(file.read()) filename = os.path.basename(file) msg.add_header("Content-Disposition", "attachment", filename=filename) return msg if __name__ == "__main__": gmail_create_draft_with_attachment()
বার্তা পাঠানো হচ্ছে
একবার আপনি একটি বার্তা তৈরি করে নিলে, আপনি messages.send
এ কলের অনুরোধের বডিতে এটি সরবরাহ করে পাঠাতে পারেন, যেমনটি নিম্নলিখিত উদাহরণগুলিতে প্রদর্শিত হয়েছে৷
জাভা
import com.google.api.client.googleapis.json.GoogleJsonError; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; import com.google.api.services.gmail.model.Message; import com.google.auth.http.HttpCredentialsAdapter; import com.google.auth.oauth2.GoogleCredentials; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.Properties; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Send Message API */ public class SendMessage { /** * Send an email from the user's mailbox to its recipient. * * @param fromEmailAddress - Email address to appear in the from: header * @param toEmailAddress - Email address of the recipient * @return the sent message, {@code null} otherwise. * @throws MessagingException - if a wrongly formatted address is encountered. * @throws IOException - if service account credentials file not found. */ public static Message sendEmail(String fromEmailAddress, String toEmailAddress) throws MessagingException, IOException { /* Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for your application.*/ GoogleCredentials credentials = GoogleCredentials.getApplicationDefault() .createScoped(GmailScopes.GMAIL_SEND); HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials); // Create the gmail API client Gmail service = new Gmail.Builder(new NetHttpTransport(), GsonFactory.getDefaultInstance(), requestInitializer) .setApplicationName("Gmail samples") .build(); // Create the email content String messageSubject = "Test message"; String bodyText = "lorem ipsum."; // Encode as MIME message Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(messageSubject); email.setText(bodyText); // Encode and wrap the MIME message into a gmail message ByteArrayOutputStream buffer = new ByteArrayOutputStream(); email.writeTo(buffer); byte[] rawMessageBytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(rawMessageBytes); Message message = new Message(); message.setRaw(encodedEmail); try { // Create send message message = service.users().messages().send("me", message).execute(); System.out.println("Message id: " + message.getId()); System.out.println(message.toPrettyString()); return message; } catch (GoogleJsonResponseException e) { // TODO(developer) - handle error appropriately GoogleJsonError error = e.getDetails(); if (error.getCode() == 403) { System.err.println("Unable to send message: " + e.getDetails()); } else { throw e; } } return null; } }
পাইথন
import base64 from email.message import EmailMessage import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_send_message(): """Create and send an email message Print the returned message id Returns: Message object, including message id Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: service = build("gmail", "v1", credentials=creds) message = EmailMessage() message.set_content("This is automated draft mail") message["To"] = "gduser1@workspacesamples.dev" message["From"] = "gduser2@workspacesamples.dev" message["Subject"] = "Automated draft" # encoded message encoded_message = base64.urlsafe_b64encode(message.as_bytes()).decode() create_message = {"raw": encoded_message} # pylint: disable=E1101 send_message = ( service.users() .messages() .send(userId="me", body=create_message) .execute() ) print(f'Message Id: {send_message["id"]}') except HttpError as error: print(f"An error occurred: {error}") send_message = None return send_message if __name__ == "__main__": gmail_send_message()
আপনি যদি একটি উত্তর পাঠানোর চেষ্টা করছেন এবং ইমেলটি থ্রেড করতে চান তবে নিশ্চিত করুন যে:
-
Subject
শিরোনাম মেলে -
References
এবংIn-Reply-To
হেডারগুলি RFC 2822 স্ট্যান্ডার্ড অনুসরণ করে।
একটি খসড়া থেকে একটি বার্তা পাঠানোর তথ্যের জন্য, খসড়া তৈরি করা দেখুন।
,Gmail API ব্যবহার করে ইমেল পাঠানোর দুটি উপায় রয়েছে:
- আপনি
messages.send
পদ্ধতি ব্যবহার করে সরাসরি এটি পাঠাতে পারেন। - আপনি
drafts.send
পদ্ধতি ব্যবহার করে একটি খসড়া থেকে এটি পাঠাতে পারেন।
ইমেলগুলি একটি বার্তা সংস্থানের raw
সম্পত্তির মধ্যে base64url এনকোড করা স্ট্রিং হিসাবে পাঠানো হয়। একটি ইমেল পাঠানোর জন্য উচ্চ-স্তরের কর্মপ্রবাহ হল:
- কিছু সুবিধাজনক উপায়ে ইমেল সামগ্রী তৈরি করুন এবং এটি একটি base64url স্ট্রিং হিসাবে এনকোড করুন।
- একটি নতুন বার্তা সংস্থান তৈরি করুন এবং আপনার তৈরি করা base64url স্ট্রিং-এ এর
raw
সম্পত্তি সেট করুন। - বার্তা পাঠাতে কল
messages.send
, অথবা, যদি একটি খসড়া পাঠান,drafts.send
.
আপনার পছন্দের ক্লায়েন্ট লাইব্রেরি এবং প্রোগ্রামিং ভাষার উপর নির্ভর করে এই কর্মপ্রবাহের বিবরণ পরিবর্তিত হতে পারে।
বার্তা তৈরি করা হচ্ছে
Gmail API-এর জন্য RFC 2822- এর সাথে সঙ্গতিপূর্ণ এবং base64url স্ট্রিং হিসাবে এনকোড করা MIME ইমেল বার্তা প্রয়োজন৷ অনেক প্রোগ্রামিং ভাষার লাইব্রেরি বা ইউটিলিটি রয়েছে যা MIME বার্তা তৈরি এবং এনকোড করার প্রক্রিয়াকে সহজ করে। নিম্নলিখিত কোড উদাহরণগুলি বিভিন্ন ভাষার জন্য Google API-এর ক্লায়েন্ট লাইব্রেরি ব্যবহার করে কীভাবে একটি MIME বার্তা তৈরি করতে হয় তা প্রদর্শন করে।
জাভা
javax.mail.internet
প্যাকেজে MimeMessage
ক্লাসের মাধ্যমে একটি ইমেল বার্তা তৈরি করা অনেক সহজ করা যেতে পারে। নিম্নলিখিত উদাহরণ দেখায় কিভাবে ইমেল বার্তা তৈরি করতে হয়, শিরোনাম সহ:
import java.util.Properties; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; /* Class to demonstrate the use of Gmail Create Email API */ public class CreateEmail { /** * Create a MimeMessage using the parameters provided. * * @param toEmailAddress email address of the receiver * @param fromEmailAddress email address of the sender, the mailbox account * @param subject subject of the email * @param bodyText body text of the email * @return the MimeMessage to be used to send email * @throws MessagingException - if a wrongly formatted address is encountered. */ public static MimeMessage createEmail(String toEmailAddress, String fromEmailAddress, String subject, String bodyText) throws MessagingException { Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(subject); email.setText(bodyText); return email; } }
পরবর্তী ধাপ হল MimeMessage
এনকোড করা, একটি Message
অবজেক্ট ইনস্ট্যান্ট করা, এবং base64url এনকোড করা মেসেজ স্ট্রিংটিকে raw
সম্পত্তির মান হিসাবে সেট করা।
import com.google.api.services.gmail.model.Message; import java.io.ByteArrayOutputStream; import java.io.IOException; import javax.mail.MessagingException; import javax.mail.internet.MimeMessage; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Create Message API */ public class CreateMessage { /** * Create a message from an email. * * @param emailContent Email to be set to raw of message * @return a message containing a base64url encoded email * @throws IOException - if service account credentials file not found. * @throws MessagingException - if a wrongly formatted address is encountered. */ public static Message createMessageWithEmail(MimeMessage emailContent) throws MessagingException, IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); emailContent.writeTo(buffer); byte[] bytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(bytes); Message message = new Message(); message.setRaw(encodedEmail); return message; } }
পাইথন
নিম্নলিখিত কোড নমুনা একটি MIME বার্তা তৈরি করে, একটি base64url স্ট্রিং-এ এনকোডিং এবং Message
সংস্থানের raw
ক্ষেত্রে এটিকে বরাদ্দ করে দেখায়:
import base64 from email.message import EmailMessage import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_create_draft(): """Create and insert a draft email. Print the returned draft's message and id. Returns: Draft object, including draft id and message meta data. Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: # create gmail api client service = build("gmail", "v1", credentials=creds) message = EmailMessage() message.set_content("This is automated draft mail") message["To"] = "gduser1@workspacesamples.dev" message["From"] = "gduser2@workspacesamples.dev" message["Subject"] = "Automated draft" # encoded message encoded_message = base64.urlsafe_b64encode(message.as_bytes()).decode() create_message = {"message": {"raw": encoded_message}} # pylint: disable=E1101 draft = ( service.users() .drafts() .create(userId="me", body=create_message) .execute() ) print(f'Draft id: {draft["id"]}\nDraft message: {draft["message"]}') except HttpError as error: print(f"An error occurred: {error}") draft = None return draft if __name__ == "__main__": gmail_create_draft()
সংযুক্তি সহ বার্তা তৈরি করা
সংযুক্তি সহ একটি বার্তা তৈরি করা অন্য কোনও বার্তা তৈরি করার মতো, তবে ফাইলটিকে বহু-অংশের MIME বার্তা হিসাবে আপলোড করার প্রক্রিয়াটি প্রোগ্রামিং ভাষার উপর নির্ভর করে। নিম্নলিখিত কোড উদাহরণগুলি একটি সংযুক্তি সহ একটি মাল্টি-পার্ট MIME বার্তা তৈরি করার সম্ভাব্য উপায়গুলি প্রদর্শন করে৷
জাভা
নিম্নলিখিত উদাহরণটি দেখায় কিভাবে একটি মাল্টি-পার্ট MIME বার্তা তৈরি করতে হয়, এনকোডিং এবং অ্যাসাইনমেন্ট ধাপগুলি উপরের মতই।
import com.google.api.client.googleapis.json.GoogleJsonError; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; import com.google.api.services.gmail.model.Draft; import com.google.api.services.gmail.model.Message; import com.google.auth.http.HttpCredentialsAdapter; import com.google.auth.oauth2.GoogleCredentials; import java.io.ByteArrayOutputStream; 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.MessagingException; import javax.mail.Multipart; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeBodyPart; import javax.mail.internet.MimeMessage; import javax.mail.internet.MimeMultipart; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Create Draft with attachment API */ public class CreateDraftWithAttachment { /** * Create a draft email with attachment. * * @param fromEmailAddress - Email address to appear in the from: header. * @param toEmailAddress - Email address of the recipient. * @param file - Path to the file to be attached. * @return the created draft, {@code null} otherwise. * @throws MessagingException - if a wrongly formatted address is encountered. * @throws IOException - if service account credentials file not found. */ public static Draft createDraftMessageWithAttachment(String fromEmailAddress, String toEmailAddress, File file) throws MessagingException, IOException { /* Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for your application.*/ GoogleCredentials credentials = GoogleCredentials.getApplicationDefault() .createScoped(GmailScopes.GMAIL_COMPOSE); HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials); // Create the gmail API client Gmail service = new Gmail.Builder(new NetHttpTransport(), GsonFactory.getDefaultInstance(), requestInitializer) .setApplicationName("Gmail samples") .build(); // Create the email content String messageSubject = "Test message"; String bodyText = "lorem ipsum."; // Encode as MIME message Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(messageSubject); MimeBodyPart mimeBodyPart = new MimeBodyPart(); mimeBodyPart.setContent(bodyText, "text/plain"); Multipart multipart = new MimeMultipart(); multipart.addBodyPart(mimeBodyPart); mimeBodyPart = new MimeBodyPart(); DataSource source = new FileDataSource(file); mimeBodyPart.setDataHandler(new DataHandler(source)); mimeBodyPart.setFileName(file.getName()); multipart.addBodyPart(mimeBodyPart); email.setContent(multipart); // Encode and wrap the MIME message into a gmail message ByteArrayOutputStream buffer = new ByteArrayOutputStream(); email.writeTo(buffer); byte[] rawMessageBytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(rawMessageBytes); Message message = new Message(); message.setRaw(encodedEmail); try { // Create the draft message Draft draft = new Draft(); draft.setMessage(message); draft = service.users().drafts().create("me", draft).execute(); System.out.println("Draft id: " + draft.getId()); System.out.println(draft.toPrettyString()); return draft; } catch (GoogleJsonResponseException e) { // TODO(developer) - handle error appropriately GoogleJsonError error = e.getDetails(); if (error.getCode() == 403) { System.err.println("Unable to create draft: " + e.getDetails()); } else { throw e; } } return null; } }
পাইথন
আগের উদাহরণের মতো, এই উদাহরণটি বার্তাটিকে base64url-এ এনকোডিং এবং Message
সংস্থানের raw
ক্ষেত্রে বরাদ্দ করাও পরিচালনা করে।
import base64 import mimetypes import os from email.message import EmailMessage from email.mime.audio import MIMEAudio from email.mime.base import MIMEBase from email.mime.image import MIMEImage from email.mime.text import MIMEText import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_create_draft_with_attachment(): """Create and insert a draft email with attachment. Print the returned draft's message and id. Returns: Draft object, including draft id and message meta data. Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: # create gmail api client service = build("gmail", "v1", credentials=creds) mime_message = EmailMessage() # headers mime_message["To"] = "gduser1@workspacesamples.dev" mime_message["From"] = "gduser2@workspacesamples.dev" mime_message["Subject"] = "sample with attachment" # text mime_message.set_content( "Hi, this is automated mail with attachment.Please do not reply." ) # attachment attachment_filename = "photo.jpg" # guessing the MIME type type_subtype, _ = mimetypes.guess_type(attachment_filename) maintype, subtype = type_subtype.split("/") with open(attachment_filename, "rb") as fp: attachment_data = fp.read() mime_message.add_attachment(attachment_data, maintype, subtype) encoded_message = base64.urlsafe_b64encode(mime_message.as_bytes()).decode() create_draft_request_body = {"message": {"raw": encoded_message}} # pylint: disable=E1101 draft = ( service.users() .drafts() .create(userId="me", body=create_draft_request_body) .execute() ) print(f'Draft id: {draft["id"]}\nDraft message: {draft["message"]}') except HttpError as error: print(f"An error occurred: {error}") draft = None return draft def build_file_part(file): """Creates a MIME part for a file. Args: file: The path to the file to be attached. Returns: A MIME part that can be attached to a message. """ content_type, encoding = mimetypes.guess_type(file) if content_type is None or encoding is not None: content_type = "application/octet-stream" main_type, sub_type = content_type.split("/", 1) if main_type == "text": with open(file, "rb"): msg = MIMEText("r", _subtype=sub_type) elif main_type == "image": with open(file, "rb"): msg = MIMEImage("r", _subtype=sub_type) elif main_type == "audio": with open(file, "rb"): msg = MIMEAudio("r", _subtype=sub_type) else: with open(file, "rb"): msg = MIMEBase(main_type, sub_type) msg.set_payload(file.read()) filename = os.path.basename(file) msg.add_header("Content-Disposition", "attachment", filename=filename) return msg if __name__ == "__main__": gmail_create_draft_with_attachment()
বার্তা পাঠানো হচ্ছে
একবার আপনি একটি বার্তা তৈরি করে নিলে, আপনি messages.send
এ কলের অনুরোধের বডিতে এটি সরবরাহ করে পাঠাতে পারেন, যেমনটি নিম্নলিখিত উদাহরণগুলিতে প্রদর্শিত হয়েছে৷
জাভা
import com.google.api.client.googleapis.json.GoogleJsonError; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; import com.google.api.services.gmail.model.Message; import com.google.auth.http.HttpCredentialsAdapter; import com.google.auth.oauth2.GoogleCredentials; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.Properties; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import org.apache.commons.codec.binary.Base64; /* Class to demonstrate the use of Gmail Send Message API */ public class SendMessage { /** * Send an email from the user's mailbox to its recipient. * * @param fromEmailAddress - Email address to appear in the from: header * @param toEmailAddress - Email address of the recipient * @return the sent message, {@code null} otherwise. * @throws MessagingException - if a wrongly formatted address is encountered. * @throws IOException - if service account credentials file not found. */ public static Message sendEmail(String fromEmailAddress, String toEmailAddress) throws MessagingException, IOException { /* Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for your application.*/ GoogleCredentials credentials = GoogleCredentials.getApplicationDefault() .createScoped(GmailScopes.GMAIL_SEND); HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials); // Create the gmail API client Gmail service = new Gmail.Builder(new NetHttpTransport(), GsonFactory.getDefaultInstance(), requestInitializer) .setApplicationName("Gmail samples") .build(); // Create the email content String messageSubject = "Test message"; String bodyText = "lorem ipsum."; // Encode as MIME message Properties props = new Properties(); Session session = Session.getDefaultInstance(props, null); MimeMessage email = new MimeMessage(session); email.setFrom(new InternetAddress(fromEmailAddress)); email.addRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmailAddress)); email.setSubject(messageSubject); email.setText(bodyText); // Encode and wrap the MIME message into a gmail message ByteArrayOutputStream buffer = new ByteArrayOutputStream(); email.writeTo(buffer); byte[] rawMessageBytes = buffer.toByteArray(); String encodedEmail = Base64.encodeBase64URLSafeString(rawMessageBytes); Message message = new Message(); message.setRaw(encodedEmail); try { // Create send message message = service.users().messages().send("me", message).execute(); System.out.println("Message id: " + message.getId()); System.out.println(message.toPrettyString()); return message; } catch (GoogleJsonResponseException e) { // TODO(developer) - handle error appropriately GoogleJsonError error = e.getDetails(); if (error.getCode() == 403) { System.err.println("Unable to send message: " + e.getDetails()); } else { throw e; } } return null; } }
পাইথন
import base64 from email.message import EmailMessage import google.auth from googleapiclient.discovery import build from googleapiclient.errors import HttpError def gmail_send_message(): """Create and send an email message Print the returned message id Returns: Message object, including message id Load pre-authorized user credentials from the environment. TODO(developer) - See https://developers.google.com/identity for guides on implementing OAuth2 for the application. """ creds, _ = google.auth.default() try: service = build("gmail", "v1", credentials=creds) message = EmailMessage() message.set_content("This is automated draft mail") message["To"] = "gduser1@workspacesamples.dev" message["From"] = "gduser2@workspacesamples.dev" message["Subject"] = "Automated draft" # encoded message encoded_message = base64.urlsafe_b64encode(message.as_bytes()).decode() create_message = {"raw": encoded_message} # pylint: disable=E1101 send_message = ( service.users() .messages() .send(userId="me", body=create_message) .execute() ) print(f'Message Id: {send_message["id"]}') except HttpError as error: print(f"An error occurred: {error}") send_message = None return send_message if __name__ == "__main__": gmail_send_message()
আপনি যদি একটি উত্তর পাঠানোর চেষ্টা করছেন এবং ইমেলটি থ্রেড করতে চান তবে নিশ্চিত করুন যে:
-
Subject
শিরোনাম মেলে -
References
এবংIn-Reply-To
হেডারগুলি RFC 2822 স্ট্যান্ডার্ড অনুসরণ করে।
একটি খসড়া থেকে একটি বার্তা পাঠানোর তথ্যের জন্য, খসড়া তৈরি করা দেখুন।