ish_manager 0.1.8.346 → 0.1.8.347
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/ish_manager/email_templates.scss +4 -1
- data/app/controllers/ish_manager/email_contexts_controller.rb +5 -3
- data/app/mailers/ish_manager/office_mailer.rb +1 -1
- data/app/views/202212 Mailchimp Templates/202212 1col fixed-width.html +863 -0
- data/app/views/202212 Mailchimp Templates/202212 1col full-width.html +906 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width 2.html +1003 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width.html +1082 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width 2.html +1053 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width.html +1147 -0
- data/app/views/202212 Mailchimp Templates/202212 3col fixed-width.html +1087 -0
- data/app/views/202212 Mailchimp Templates/202212 3col full-width.html +1136 -0
- data/app/views/202212 Mailchimp Templates/202212 catalog various-colors-1.html +1223 -0
- data/app/views/202212 Mailchimp Templates/202212 educate.html +1080 -0
- data/app/views/202212 Mailchimp Templates/202212 follow up.html +1001 -0
- data/app/views/202212 Mailchimp Templates/202212 make an announcement.html +1048 -0
- data/app/views/202212 Mailchimp Templates/202212 sell-a-product.html +977 -0
- data/app/views/202212 Mailchimp Templates/202212 tell a story.html +1168 -0
- data/app/views/202212 Mailchimp Templates/202212 theme art-newsletter.html +1612 -0
- data/app/views/202212 Mailchimp Templates/202212 theme caribou-xmas.html +856 -0
- data/app/views/202212 Mailchimp Templates/202212 theme colorbox.html +1027 -0
- data/app/views/202212 Mailchimp Templates/202212 theme competition-invitation.html +918 -0
- data/app/views/202212 Mailchimp Templates/202212 theme event-veerle.html +1132 -0
- data/app/views/202212 Mailchimp Templates/202212 theme fall-colors.html +1407 -0
- data/app/views/202212 Mailchimp Templates/202212 theme gift-giving.html +787 -0
- data/app/views/202212 Mailchimp Templates/202212 theme giftgiving-snowmen.html +731 -0
- data/app/views/202212 Mailchimp Templates/202212 theme heart-of-flowers.html +795 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-card.html +915 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-image.html +1148 -0
- data/app/views/202212 Mailchimp Templates/202212 theme monthly-contest.html +967 -0
- data/app/views/202212 Mailchimp Templates/202212 theme multiple-event.html +1189 -0
- data/app/views/202212 Mailchimp Templates/202212 theme postcard.html +914 -0
- data/app/views/202212 Mailchimp Templates/202212 theme snowy-fields.html +733 -0
- data/app/views/202212 Mailchimp Templates/202212 theme soft.html +849 -0
- data/app/views/202212 Mailchimp Templates/202212 theme sophisticated.html +1079 -0
- data/app/views/202212 Mailchimp Templates/202212 theme subtle.html +1218 -0
- data/app/views/202212 Mailchimp Templates/202212 theme ticket.html +1015 -0
- data/app/views/202212 Mailchimp Templates/202212 theme whale.html +888 -0
- data/app/views/ish_manager/application/_main_footer.haml +5 -3
- data/app/views/ish_manager/email_contexts/_form.haml +3 -1
- data/app/views/ish_manager/email_contexts/show.haml +3 -3
- data/app/views/layouts/ish_manager/application.haml +10 -6
- data/lib/tasks/office_tasks.rake +27 -0
- metadata +37 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e2fddc1d3c422db421f3a2b2fbf7744614acc45149c8e703de1def817f02063
|
|
4
|
+
data.tar.gz: c187f60ca2a6fd5e4c137e65444ae2870c01a447f8918d3bb0c11e17d6071089
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67f229406a971c6ada4d8a235ae5a594a4986f4197ec564a0b9e6c838034b4d8b3248c7672372bb9c46857e34525a40068045087fb50e34e673eca58ceeb124a
|
|
7
|
+
data.tar.gz: 4abfe9f4e0a32277d52e4b774aebea6a6e9857763e71b8a18bacfbe19f7083c082b7ee84d73bb0b60e700e6fe2911ea251982ec9701842b93a3a69ea0b718881
|
|
@@ -15,7 +15,8 @@ class ::IshManager::EmailContextsController < ::IshManager::ApplicationControlle
|
|
|
15
15
|
redirect_to action: 'show', id: @email_ctx.id
|
|
16
16
|
return
|
|
17
17
|
else
|
|
18
|
-
flash[:alert] = "Could not save: #{@email_ctx.errors.full_messages.join(', ')}"
|
|
18
|
+
# flash[:alert] = "Could not save: #{@email_ctx.errors.full_messages.join(', ')}"
|
|
19
|
+
flash[:alert] = ['Could not save:'] + @email_ctx.errors.full_messages
|
|
19
20
|
render action: :new
|
|
20
21
|
return
|
|
21
22
|
end
|
|
@@ -38,8 +39,9 @@ class ::IshManager::EmailContextsController < ::IshManager::ApplicationControlle
|
|
|
38
39
|
authorize! :do_send, @ctx
|
|
39
40
|
case @ctx.type
|
|
40
41
|
when ::Ish::EmailContext::TYPE_SINGLE
|
|
41
|
-
flash[:notice] = 'Scheduled a single send'
|
|
42
|
-
|
|
42
|
+
flash[:notice] = 'Scheduled a single send - v2'
|
|
43
|
+
@ctx.send_at = Time.now
|
|
44
|
+
@ctx.save
|
|
43
45
|
when ::Ish::EmailContext::TYPE_CAMPAIGN
|
|
44
46
|
flash[:notice] = 'Scheduled campaign send'
|
|
45
47
|
IshManager::EmailCampaignJob.new.perform(params[:id])
|
|
@@ -69,7 +69,7 @@ class IshManager::OfficeMailer < IshManager::ApplicationMailer
|
|
|
69
69
|
rendered_str = ac.render_to_string("ish_manager/email_templates/plain")
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
@email_ctx.update( rendered_str: rendered_str, sent_at: Time.now )
|
|
72
|
+
@email_ctx.update( rendered_str: rendered_str, sent_at: Time.now.to_s )
|
|
73
73
|
|
|
74
74
|
mail( from: @email_ctx.from_email,
|
|
75
75
|
to: @email_ctx.to_email,
|