diff --git a/app/views/events/_bulk_actions_menu.html.erb b/app/views/events/_bulk_actions_menu.html.erb index c8ef88da8..54a03473b 100644 --- a/app/views/events/_bulk_actions_menu.html.erb +++ b/app/views/events/_bulk_actions_menu.html.erb @@ -13,7 +13,7 @@ data-dropdown-target="content" class="hidden absolute right-0 z-10 mt-1 bg-white border border-gray-200 rounded-md shadow-lg py-1 min-w-[180px]"> <%= link_to "Onboarding tracker", onboarding_event_path(@event), class: item_class %> - <%= link_to "Send reminder emails", preview_reminder_event_path(@event), class: item_class %> + <%= link_to "Send bulk emails", preview_reminder_event_path(@event), class: item_class %> <%= link_to "Bulk payments", bulk_payments_event_path(@event), class: item_class %> <%= link_to registrants_event_path(@event, format: :csv), class: item_class, data: { turbo_frame: "_top" } do %> Download CSV diff --git a/app/views/events/confirm_reminder.html.erb b/app/views/events/confirm_reminder.html.erb index b04dde178..5b3b97435 100644 --- a/app/views/events/confirm_reminder.html.erb +++ b/app/views/events/confirm_reminder.html.erb @@ -8,7 +8,7 @@
<%= @event.title %><% if @event.start_date.present? %> • <%= @event.date_range %><% end %>
@@ -28,11 +28,16 @@<%= @event_registrations.map { |reg| reg.registrant.full_name }.join(", ") %>
++ <%= @event_registrations.map { |reg| reg.registrant.preferred_email }.join(", ") %> +
+<%= @event.title %><% if @event.start_date.present? %> • <%= @event.date_range %><% end %> @@ -21,8 +21,8 @@
Choose who will receive this reminder. Filters keep everyone in the list and
- simply check the registrants who match. Separate multiple values with
- -- to match any of them (e.g.
+ check the matches. Separate multiple values with
+ '--' to match multiple values (e.g.
amy--aisha).
- The subject line recipients will see. Edit it as you like — leave it as is to use the default. -
- <%= text_field_tag :custom_subject, @custom_subject, - class: "w-full rounded border-gray-300 shadow-sm px-3 py-2 text-sm", - data: { reminder_preview_target: "subjectInput", action: "input->reminder-preview#updateSubject" } %> -- The intro shown near the top of the reminder, above the event details. Edit it or clear it as you like — the event details and the "View ticket" button are always included. -
-- Accepts basic HTML — bold, italics, links, lists, and line breaks. -
- <%= text_area_tag :custom_message, @custom_message, - rows: 4, - class: "w-full rounded border-gray-300 shadow-sm px-3 py-2 text-sm font-mono", - data: { reminder_preview_target: "input", action: "input->reminder-preview#update" } %> ++ The subject line recipients will see. Edit it as you like — leave it as is to use the default. +
+ <%= text_field_tag :custom_subject, @custom_subject, + class: "w-full rounded border-gray-300 shadow-sm px-3 py-2 text-sm bg-white", + data: { reminder_preview_target: "subjectInput", action: "input->reminder-preview#updateSubject" } %> ++ The intro shown near the top of the reminder, above the event details. Edit it or clear it as you like — the event details and the "View ticket" button are always included. +
+ <%= text_area_tag :custom_message, @custom_message, + rows: 4, + class: "w-full rounded border-gray-300 shadow-sm px-3 py-2 text-sm font-mono bg-white", + data: { reminder_preview_target: "input", action: "input->reminder-preview#update" } %> ++ Accepts basic HTML — bold, italics, links, lists, and line breaks. +
+