Skip to contents

Sends email notification when admin approves access request to metrics documentation.

Usage

send_metrics_granted(to, full_name, access_instructions, from = NULL)

Arguments

to

Email address of the requester

full_name

Full name of the requester

access_instructions

Instructions for accessing content (password, code, etc.)

from

Optional. Sender email address (defaults to configured sender)

Value

List with success status and details

Examples

if (FALSE) { # \dontrun{
result <- send_metrics_granted(
  to = "analyst@bank.com",
  full_name = "Jane Doe",
  access_instructions = "Your temporary access code: MTR-2024-4782"
)
} # }