Skip to contents

Sends a confirmation email to artists who have applied to the pilot program waiting list. Includes personalized greeting and application ID.

Usage

send_waitlist_confirm(to, artist_name, waitlist_id, from = NULL)

Arguments

to

Email address of the artist

artist_name

Full name of the artist

waitlist_id

Unique identifier for the waiting list application

from

Optional. Sender email address (defaults to configured sender)

Value

List with success status and details

  • success: Logical indicating if email was sent

  • message_id: ID of sent email (if successful)

  • error: Error message (if failed)

Examples

if (FALSE) { # \dontrun{
# Send confirmation after adding to waiting list
result <- send_waitlist_confirm(
  to = "artist@example.com",
  artist_name = "Jane Artist",
  waitlist_id = "uuid-12345"
)

if (result$success) {
  message("Confirmation email sent!")
}
} # }