https://github.com/andrie/mailmerge
Mail Merge Using R Markdown Documents and 'gmailr'
https://github.com/andrie/mailmerge
mailmerge r-package rstats
Last synced: 29 days ago
JSON representation
Mail Merge Using R Markdown Documents and 'gmailr'
- Host: GitHub
- URL: https://github.com/andrie/mailmerge
- Owner: andrie
- License: other
- Created: 2019-09-29T21:24:51.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-31T18:03:26.000Z (about 1 year ago)
- Last Synced: 2025-02-27T09:45:43.945Z (about 2 months ago)
- Topics: mailmerge, r-package, rstats
- Language: R
- Homepage: https://andrie.github.io/mailmerge/
- Size: 3.57 MB
- Stars: 43
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - andrie/mailmerge - Mail Merge Using R Markdown Documents and 'gmailr' (R)
README
---
output: github_document
format: gfm
default-image-extension: ""
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# mailmerge
[](https://CRAN.R-project.org/package=mailmerge)
[](https://www.r-pkg.org/package=miniCRAN)
[](https://github.com/andrie/mailmerge/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/andrie/mailmerge?branch=main)
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)```{r child="man/fragments/intro_text.Rmd"}
```## Installation
Install the package from CRAN:
```r
install.packages("mailmerge")
```Install the dev version from https://github.com/andrie/mailmerge
```r
remotes::install_github("andrie/mailmerge")
```## Setup
At the moment only gmail is supported as the email back-end, using the `gmailr` package (https://github.com/r-lib/gmailr).
Before you use `mail_merge()` it's important to authenticate against the gmail service, and you should use `gmailr::gm_auth()` to do this.
## Example
```{r child="man/fragments/intro_example.Rmd"}
``````{r, echo=FALSE, out.width="80%"}
knitr::include_graphics("man/figures/mail-merge.gif")
```