The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Simple SendGrid Email API client for sending emails with R.
Install the released version of sg from CRAN:
install.packages("sg")
Or install the development version from GitHub with:
# install.packages("pak")
::pak("botan/sg") pak
Set your API key using the SENDGRID_API_KEY
environment
variable. The package will automatically detect and use it when sending
emails.
This is a basic example which shows you how to send an email:
library(sg)
sg_mime() |>
sg_from("sender@example.com") |>
sg_to("recipient1@example.com", "recipient2@example.com") |>
sg_cc("cc1@example.com", "cc2@example.com") |>
sg_bcc("bcc1@example.com", "bcc2@example.com") |>
sg_subject("This is the subject") |>
sg_body("Hello from sg!") |>
sg_attachments("path/to/file1.csv", "path/to/file2.pdf") |>
sg_send()
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.