Configure the email application to automatically send certificates.
configure_email(
user = NULL,
app.name = NULL,
subject = NULL,
body = NULL,
cc = NULL,
bcc = NULL
)
Character. Gmail account that will be used to send certificates.
Name of the mail application used to send emails. To create one, access https://myaccount.google.com/apppasswords.
Character. Subject of the email to be sent. If not specified, labeleR will use a default value.
Character. Body text of the email to be sent. If not specified, labeleR will use a default value.
Character. String (or vector of strings) containing the email addresses to send the email as a copy.
Character. String (or vector of strings) containing the email addresses to send the email as a hidden copy.
A list including at least a 'user' string' and an 'app.name' string. Optionally, slots 'subject', 'body', 'cc' and 'bcc' can be edited to compile the email to send.
if (FALSE) { # \dontrun{
email.info <- configure_email(user = 'example@gmail.com')
## If you already have created an application:
email.info <- configure_email(user = 'example@gmail.com', app.name = "emailsend")
} # }