Last active
October 19, 2024 04:11
-
-
Save MarkEdmondson1234/ddcac436cbdfd4557639522573bfc7b6 to your computer and use it in GitHub Desktop.
Send an email via an R function using Mailgun
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' Email a user a report is ready | |
#' | |
#' Requires an account at Mailgun: https://mailgun.com | |
#' Pre-verification can only send to a whitelist of emails you configure | |
#' | |
#' @param email Email to send to | |
#' @param mail_message Any extra info | |
#' | |
#' @return TRUE if successful email sent | |
#' @import httr | |
#' @export | |
sendEmail <- function(email = "[email protected]", | |
mail_message = "Hello"){ | |
url <- "https://api.mailgun.net/v3/sandbox5f2XXXXXXXa.mailgun.org/messages" | |
## username:password so api_key is all after the api: | |
api_key <- "key-c5957XXXXXXXXXXXbb9cf8ce" | |
the_body <- | |
list( | |
from="Mailgun Sandbox <[email protected]>", | |
to=email, | |
subject="Mailgun from R", | |
text=mail_message | |
) | |
req <- httr::POST(url, | |
httr::authenticate("api", api_key), | |
encode = "form", | |
body = the_body) | |
httr::stop_for_status(req) | |
TRUE | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pimped it up a little: https://github.com/laresbernardo/lares/blob/master/R/mails.R
Just need to know how to send multiple attachments for it to fully work!