* Throw away old system * Add new system * Add new example files * Replace all calls * add the most important docs * Add Specs * rename disable_ssl_requirement to require_ssl * cloudfiles isn't used/called in our code * since community_spotlight.list is only used as enable flag replace it with such one and remove all legacy and irelevant codepaths around it * die if session secret is unset and on heroku * First basic infrastructure for version information
15 lines
575 B
Ruby
15 lines
575 B
Ruby
module NotificationMailers
|
|
class PrivateMessage < NotificationMailers::Base
|
|
attr_accessor :message, :conversation, :participants
|
|
|
|
def set_headers(message_id)
|
|
@message = Message.find_by_id(message_id)
|
|
@conversation = @message.conversation
|
|
@participants = @conversation.participants
|
|
|
|
@headers[:from] = "\"#{@message.author_name} (Diaspora*)\" <#{AppConfig.mail.sender_address}>"
|
|
@headers[:subject] = @conversation.subject.strip
|
|
@headers[:subject] = "Re: #{@headers[:subject]}" if @conversation.messages.size > 1
|
|
end
|
|
end
|
|
end
|