A function to email search results.

send_email(
  email_recipient,
  filtered_data,
  email_subject = "Results from RHouseHunter"
)

Arguments

email_recipient

A character vector containing the recipient's email.

filtered_data

A tibble containing the filtered search results.

email_subject

A character vector of desired subject of the email. Optional argument with default value of 'Results from RHouseHunter'.

Value

None.

Examples

send_email("elabandari@gmail.com", (tibble::tibble(name = c("house1"))))