
Version 0.1
artsend 0.1.0
Initial release
Email sending via Resend API integration.
get_resend_config()retrieves API configuration from environment variables. See Resend API Keys for setup.is_resend_configured()checks ifART_RESEND_KEYenvironment variable is set.send_contact_email()sends gallery visitor messages to artists with optional artwork context.send_waitlist_confirm()confirms pilot program waitlist applications.send_artist_invite()sends pilot program invitations with onboarding links.send_wp_email()delivers whitepapers with content personalized by user type (artist, investor, other).validate_email_fmt()validates email address format with optional support for display name format viaallow_disp_name.Professional HTML email templates with consistent branding.
Standardized response format: all sending functions return
list(success, message_id)on success orlist(success, error)on failure.Configuration via
ART_RESEND_KEYenvironment variable. See Resend Getting Started for API key setup.
artsend 0.1.1
New features
send_metrics_confirm()sends immediate confirmation when users request access to metrics documentation.send_metrics_granted()notifies users when their access request is approved.send_metrics_admin()sends admin notifications for access request review.send_investor_welcome()handles investor onboarding with optional data room access via theincl_dataroomargument.
Improvements
Enhanced error handling across all email functions with consistent
list(success, error)return format.Improved HTML email templates with better responsive design.
send_contact_email()now displays artwork context whenart_titleandart_urlare provided.
artsend 0.1.2
Documentation
Added comprehensive {pkgdown} documentation site.
Created three vignettes covering configuration, quickstart workflows, and advanced patterns including metrics access and Shiny integration.
Rewrote README.md with installation instructions, function reference table, usage examples, error handling patterns, and troubleshooting guide.
Added
@familytags to all exported functions for better cross-referencing.Enhanced roxygen2 documentation with improved
@descriptionand@details.