Skip to content

Commit

Permalink
Modify names used in documentation (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
rich-iannone authored Nov 15, 2019
1 parent 743bc71 commit 4fbd99f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/smtp_send.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
#' @param to A vector of email addresses serving as primary recipients for the
#' message. For secondary recipients, use the `cc` and `bcc` arguments. A
#' named character vector can be used to specify the recipient names along
#' with the their email address (e.g., `c("The Recipient" = "recipient@example.com")`).
#' with the their email address (e.g., `c("Jane Doe" = "jane_doe@example.com")`).
#' @param from The email address of the sender. Often this needs to be the same
#' email address that is associated with the account actually sending the
#' message. As with `to`, `cc`, and `bcc`, we can either supply a single email
#' address or use a named character vector with the sender name and email
#' address (e.g., `c("The Sender" = "sender@example.com")`).
#' address (e.g., `c("John Doe" = "john_doe@example.com")`).
#' @param subject The subject of the message, which is usually a brief summary
#' of the topic of the message. If not provided, an empty string will be used
#' (which is handled differently by email clients).
Expand All @@ -34,7 +34,7 @@
#' The BCC list differs in that those recipients will be concealed from all
#' other recipients (including those on the BCC list). A named character
#' vector can be used to specify the recipient names along with the their
#' email address (e.g., `c("The Recipient" = "recipient@example.com")`).
#' email address (e.g., `c("Joe Public" = "joe_public@example.com")`).
#' @param credentials One of three credential helper functions must be used
#' here: (1) [creds()], (2) [creds_key()], or (3) [creds_file()]. The first,
#' [creds()], allows for a manual specification of SMTP configuration and
Expand Down
6 changes: 3 additions & 3 deletions man/smtp_send.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4fbd99f

Please sign in to comment.