Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify names used in documentation #107

Merged
merged 1 commit into from
Nov 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.