Description Usage Arguments Functions See Also Examples
These functions collapse the emails in the provided tbl
to
a comma-separated string that can be cut and paste into an email
client's "To:" field.
1 2 3 | get_emails(tbl, sorted = TRUE, delimiter = ", ")
print_emails(tbl, sorted = TRUE, delimiter = ", ")
|
tbl |
A tibble with one required column "email" |
sorted |
Should the emails be sorted before returning? |
delimiter |
Character(s) to use as a delimiter to when concatenating emails |
get_emails
: return an email list
print_emails
: print the emails to the console
parse_contact_table
1 2 3 4 5 6 7 | html_file <- system.file(package = "contactparser", "testdata", "example.html")
parsed <- parse_contact_table(html_file)
get_emails(parsed)
print_emails(parsed)
print_emails(parsed, delimiter = "\n")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.