e16cc21b0a
- Adds a button in Account Settings where you can request a ZIP export of your Fizzy data - Export files are created in the background. When ready, a link to download them is sent to the requester. - Exports expire after 24 hours. And are limited to 10 per day.
9 lines
200 B
Ruby
9 lines
200 B
Ruby
class ExportMailer < ApplicationMailer
|
|
def completed(export)
|
|
@export = export
|
|
@user = export.user
|
|
|
|
mail to: @user.identity.email_address, subject: "Your Fizzy export is ready"
|
|
end
|
|
end
|