email_seed.ml
sihl
sihl.app
sihl.authn
sihl.authz
sihl.cmd
sihl.configuration
sihl.core
sihl.data
sihl.email
sihl.http
sihl.log
sihl.message
sihl.middleware
sihl.queue
sihl.schedule
sihl.seed
sihl.server
sihl.session
sihl.storage
sihl.token
sihl.user
sihl.utils
sihl.web
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 (* let add_confirmation_template = * Data.Migration.create_step ~label:"create default email templates" * {sql| * INSERT INTO email_templates ( * uuid, * label, * content_text, * content_html, * status * ) VALUES ( * 'fb7aec3f-2178-4166-beb4-79a3a663e093', * 'registration_confirmation', * 'Hi, \n\n Thanks for signing up. \n\n Please go to this URL to confirm your email address: {base_url}/app/confirm-email?token={token} \n\n Best, \n Josef', * '', * 'active' * ) * |sql} * * let add_password_reset_template = * Data.Migration.create_step ~label:"create default email templates" * {sql| * INSERT INTO email_templates ( * uuid, * label, * content_text, * content_html, * status * ) VALUES ( * 'fb7aec3f-2178-4166-beb4-79a3a663e092', * 'registration_confirmation', * 'Hi, \n\n You requested to reset your password. \n\n Please go to this URL to reset your password: {base_url}/app/password-reset?token={token} \n\n Best, \n Josef', * '', * 'active' * ) * |sql} *)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
(* let add_confirmation_template = * Data.Migration.create_step ~label:"create default email templates" * {sql| * INSERT INTO email_templates ( * uuid, * label, * content_text, * content_html, * status * ) VALUES ( * 'fb7aec3f-2178-4166-beb4-79a3a663e093', * 'registration_confirmation', * 'Hi, \n\n Thanks for signing up. \n\n Please go to this URL to confirm your email address: {base_url}/app/confirm-email?token={token} \n\n Best, \n Josef', * '', * 'active' * ) * |sql} * * let add_password_reset_template = * Data.Migration.create_step ~label:"create default email templates" * {sql| * INSERT INTO email_templates ( * uuid, * label, * content_text, * content_html, * status * ) VALUES ( * 'fb7aec3f-2178-4166-beb4-79a3a663e092', * 'registration_confirmation', * 'Hi, \n\n You requested to reset your password. \n\n Please go to this URL to reset your password: {base_url}/app/password-reset?token={token} \n\n Best, \n Josef', * '', * 'active' * ) * |sql} *)