Skip to contents

Sends an invitation email to artists who have been accepted into the pilot program. This is sent when status changes from "pending" to "invited".

Usage

send_artist_invite(to, artist_name, onboard_url, from = NULL)

Arguments

to

Email address of the artist

artist_name

Full name of the artist

onboard_url

URL for the artist to complete onboarding

from

Optional. Sender email address (defaults to configured sender)

Value

List with success status and details

Examples

if (FALSE) { # \dontrun{
# Send invitation when artist is accepted
result <- send_artist_invite(
  to = "artist@example.com",
  artist_name = "Jane Artist",
  onboard_url = "https://artalytics.app/onboarding?token=xxx"
)
} # }