Skip to content

Email Delivery Made Simple: Unofficial Postmark API Integration for R

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

andreranza/postmarkr

Repository files navigation

postmarkr

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. R-CMD-check

The goal of postmarkr is to interact with the Postmark API, from R.

It is an independent, community-developed R package for the Postmark email service (not created by or affiliated with Postmark).

Installation

You can install the development version of postmarkr like so:

pak::pak("andreranza/postmarkr")

Example

This is a basic example which shows you how to solve a common problem:

library(postmarkr)
dat <- template_send_email_batch(
  from = "[email protected]",
  to = c( # potentially, a long vector of emails
    "[email protected]",
    "[email protected]"
  ),
  id = 36620093L,
  template_model = list(
    template_var_01 = "nutrivetpet",
    template_var_02 = "www.nutrivetpet.com"
  ),
  msg_stream = "broadcast",
  tag = "test",
  track_opens = TRUE
)

Features

  • Send batch emails with template
  • Get email delivery logs
  • List email templates
  • Track email delivery statistics

About

Email Delivery Made Simple: Unofficial Postmark API Integration for R

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages