seminar/app/views/email/signup_email.html.erb

9 lines
376 B
Plaintext
Raw Normal View History

2020-01-12 06:39:32 +00:00
<% email_set = SeminarMain.where(id:@data['seminar_id']).first.seminar_email_sets.select{|v| v.field_name == 'signup'} %>
<% if email_set.length != 0 %>
<% if !(email_set[0].content.nil?) %>
<%= email_set[0].content[@data['locale']].html_safe %>
<% end %>
<% else %>
<%= t('seminar.email_signup_content') %>
2021-03-29 14:27:08 +00:00
<% end %>
2021-03-31 08:15:12 +00:00
<%= (@data['extra_text'] rescue "").to_s.html_safe %>