From b2e6b2d55070ded1b8aa2897c9e5ab70405e5964 Mon Sep 17 00:00:00 2001 From: Andrew Collier Date: Wed, 2 Oct 2024 04:32:49 +0100 Subject: [PATCH] chore: Fix spacing --- R/header-mail.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/header-mail.R b/R/header-mail.R index 2f86bfa..e9eb36f 100644 --- a/R/header-mail.R +++ b/R/header-mail.R @@ -184,7 +184,7 @@ subject <- function(msg, #' # Create a message and set the ID #' msg <- envelope() %>% id("1234567890.123456@example.com") #' # Create a message with specified ID -#' msg <- envelope(id="1234567890.123456@example.com") +#' msg <- envelope(id = "1234567890.123456@example.com") id <- function(msg, id) { # Remove inclosing <> to standardise argument. id <- gsub("^<|>$", "", id)