Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrie/mailmerge
Mail Merge Using R Markdown Documents and 'gmailr'
https://github.com/andrie/mailmerge
mailmerge r-package rstats
Last synced: about 2 months 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 (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-31T18:03:26.000Z (9 months ago)
- Last Synced: 2024-10-11T18:35:23.411Z (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
[![CRAN status](https://www.r-pkg.org/badges/version/mailmerge)](https://CRAN.R-project.org/package=mailmerge)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/mailmerge)](https://www.r-pkg.org/package=miniCRAN)
[![R-CMD-check](https://github.com/andrie/mailmerge/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/andrie/mailmerge/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/andrie/mailmerge/branch/main/graph/badge.svg)](https://app.codecov.io/gh/andrie/mailmerge?branch=main)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](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")
```