Skip to contents

Simple check to see if Resend API key is available in environment.

Usage

is_resend_configured()

Value

Logical. TRUE if ART_RESEND_KEY is set, FALSE otherwise.

See also

Other configuration: get_resend_config()

Examples

if (is_resend_configured()) {
  # Send email
} else {
  message("Resend not configured")
}
#> NULL