-
-
Save j450h1/484d8e457c93507f1280674c4c5657b5 to your computer and use it in GitHub Desktop.
Send an email via an R function using Mailgun
This file contains hidden or 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