7 lines
147 B
Ruby
7 lines
147 B
Ruby
class DashboardMailerPreview < ActionMailer::Preview
|
|
def forward
|
|
proposal = Proposal.first
|
|
Dashboard::Mailer.forward(proposal)
|
|
end
|
|
end
|