使用 gmailr 从 gmail 帐户中提取电子邮件
Extracting emails from a gmail account with gmailr
我最近学习了如何使用 gmailr 在 R 中发送电子邮件。
gmailr::send_message(mime(from = "email1@gmail.com",
to = "email2@gmail.com",
subject = "The Great Subject",
body = "Hello buddy. How are you?"))
现在,假设我有一个帐户 email2@gmail.com,我想获取收到的这封邮件的正文。我怎样才能在 R 中做到这一点?感谢您的帮助和建议。
根据chinsoon12的建议,我得到了邮件正文
A <- messages("The Great Subject",
include_spam_trash = FALSE)
message(id = A[[1]]$"messages"[[1]]$"id")$snippet
希望对你有所帮助
我最近学习了如何使用 gmailr 在 R 中发送电子邮件。
gmailr::send_message(mime(from = "email1@gmail.com",
to = "email2@gmail.com",
subject = "The Great Subject",
body = "Hello buddy. How are you?"))
现在,假设我有一个帐户 email2@gmail.com,我想获取收到的这封邮件的正文。我怎样才能在 R 中做到这一点?感谢您的帮助和建议。
根据chinsoon12的建议,我得到了邮件正文
A <- messages("The Great Subject",
include_spam_trash = FALSE)
message(id = A[[1]]$"messages"[[1]]$"id")$snippet
希望对你有所帮助