create_smtp_creds_file {blastula} | R Documentation |
Store SMTP credentials in a file
Description
We can create a file with SMTP configuration and access credentials for the
purpose of more easily sending email messages through smtp_send()
. With
this file produced, the credentials helper creds_file()
can be used in the
credentials
argument of smtp_send()
.
Usage
create_smtp_creds_file(
file,
user = NULL,
provider = NULL,
host = NULL,
port = NULL,
use_ssl = NULL
)
Arguments
file |
The output filename for the credentials file. |
user |
The username for the email account. Typically, this is the email address associated with the account. |
provider |
An optional email provider shortname for autocompleting SMTP
configuration details (the |
host , port , use_ssl |
Configuration info for the SMTP server. The |
Examples
# Create a credentials file to make it
# much easier to send email out through
# Gmail with `smtp_send()`; name the
# file "gmail_creds"
# create_smtp_creds_file(
# file = "gmail_creds",
# user = "user_name@gmail.com",
# provider = "gmail"
# )