-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Labels
Description
Does this gem support a template_path
option à la Rails ActionMailer? So instead of putting all the <texter_name>
views under app/views
it can be anywhere like app/views/texters
.
I tried emulating the ActionMailer way like so:
class UserTexter < Textris::Base
default from: 'Our Team <+1 500-555-0006>'
default template_path: "texters/#{name.underscore}"
...
end
But it still looks exclusively under app/views
.
Use case for this would be to separate texters from mailers and every other views under app/views
to allow view organization like the following:
app/views/mailers
app/views/texters
wahlg