diff --git a/src/routes/events_speakers/10_edit_modal__event_presenter_obj.svelte b/src/routes/events_speakers/10_edit_modal__event_presenter_obj.svelte index c0b87987..f48c2679 100644 --- a/src/routes/events_speakers/10_edit_modal__event_presenter_obj.svelte +++ b/src/routes/events_speakers/10_edit_modal__event_presenter_obj.svelte @@ -483,7 +483,25 @@ function send_init_confirm_email() { let subject = `CHOW 2024 Speaker Hub Link for ${$slct.event_presenter_obj.full_name} (ID: ${$slct.event_presenter_id})`; - let body_html = `

Thank you for your submission to the Speaker Hub. You are an integral part of Capitol Hill Ocean Week and we appreciate your participation. If you need to make any changes or updates to your submission, you may access it via the below hyperlink:

Name: ${$slct.event_presenter_obj.full_name} (Speaker ID: ${$slct.event_presenter_id})

Use this link to view or update your CHOW 2024 speaker information.

Copy and paste link: ${$ae_loc.mod.events.presenter_link}

`; + let body_html = ` +
${$slct.event_presenter_obj.full_name}, +

Thank you for your submission to the Capitol Hill Ocean Week Speaker Hub. You are an integral part of Capitol Hill Ocean Week and we appreciate your participation. If you need to make any changes or updates to your submission, you may access it via the link below.

+
+ +
+ Name: ${$slct.event_presenter_obj.full_name}
+ Professional title: ${$slct.event_presenter_obj.professional_title}
+ Affiliations: ${$slct.event_presenter_obj.affiliations}
+ Email: ${$slct.event_presenter_obj.email} +
+ +
+ +
+ CHOW 2024 Speaker ID: ${$slct.event_presenter_id}
+

Use this link to view or update your CHOW 2024 speaker information.
+ Copy and paste link: ${$ae_loc.mod.events.presenter_link}

+
`; api.send_email({ api_cfg: $ae_api, @@ -498,7 +516,32 @@ function send_init_confirm_email() { function send_summary_email() { let subject = `CHOW 2024 Speaker Hub Link for ${$slct.event_presenter_obj.full_name} (ID: ${$slct.event_presenter_id})`; - let body_html = `

Thank you for your submission to the Speaker Hub. You are an integral part of Capitol Hill Ocean Week and we appreciate your participation. If you need to make any changes or updates to your submission, you may access it via the link below.

Name: ${$slct.event_presenter_obj.full_name} (ID: ${$slct.event_presenter_id})

Professional title: ${$slct.event_presenter_obj.professional_title}

Affiliations: ${$slct.event_presenter_obj.affiliations}

Email: ${$slct.event_presenter_obj.email}

Biography:
${$slct.event_presenter_obj.biography}
Headshot:
${placeholder_li.image_headshot}

Use this link to view or update your CHOW 2024 speaker information.

Copy and paste link: ${$ae_loc.mod.events.presenter_link}

`; + let body_html = ` +
${$slct.event_presenter_obj.full_name}, +

Thank you for your submission to the Capitol Hill Ocean Week Speaker Hub. You are an integral part of Capitol Hill Ocean Week and we appreciate your participation. If you need to make any changes or updates to your submission, you may access it via the link below.

+
+ +
+ Name: ${$slct.event_presenter_obj.full_name}
+ Professional title: ${$slct.event_presenter_obj.professional_title}
+ Affiliations: ${$slct.event_presenter_obj.affiliations}
+ Email: ${$slct.event_presenter_obj.email} +
+ +
Biography:
${$slct.event_presenter_obj.biography}
+
+ +
+ Headshot:
${placeholder_li.image_headshot}
+
+ +
+ +
+ CHOW 2024 Speaker ID: ${$slct.event_presenter_id}
+

Use this link to view or update your CHOW 2024 speaker information.
+ Copy and paste link: ${$ae_loc.mod.events.presenter_link}

+
`; api.send_email({ api_cfg: $ae_api, @@ -1079,7 +1122,7 @@ async function handle_delete_event_presenter_obj({event_presenter_id, hosted_fil $slct.event_presenter_id = null; $slct.event_presenter_obj = {}; }} - class="btn variant-glass-warning mx-1 text-xs" type="button" + class="btn btn-sm variant-glass-warning mx-1" type="button" title="Delete record permanently" > Delete @@ -1093,7 +1136,7 @@ async function handle_delete_event_presenter_obj({event_presenter_id, hosted_fil $slct.event_presenter_id = null; $slct.event_presenter_obj = {}; }} - class="btn variant-glass-warning mx-1 text-xs" type="button" + class="btn btn-sm variant-glass-warning mx-1" type="button" title="Disable record to delete" > Delete @@ -1107,7 +1150,7 @@ async function handle_delete_event_presenter_obj({event_presenter_id, hosted_fil $slct.event_presenter_id = null; $slct.event_presenter_obj = {}; }} - class="btn variant-glass-warning mx-1 text-xs" type="button" + class="btn btn-sm variant-glass-warning mx-1" type="button" title="Hide record to delete" > Delete @@ -1116,7 +1159,7 @@ async function handle_delete_event_presenter_obj({event_presenter_id, hosted_fil {/if}