Sends a confirmation email to artists who have applied to the pilot program waiting list. Includes personalized greeting and application ID.
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)
See also
send_artist_invite()to send invitation when acceptedget_resend_config()for API configuration
Other email-sending:
send_artist_invite(),
send_contact_email(),
send_investor_welcome(),
send_metrics_admin(),
send_metrics_confirm(),
send_metrics_granted(),
send_wp_email()
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!")
}
} # }
