2010-09-13 08:25:27 +00:00
|
|
|
|
|
|
|
class Msf::DBManager
|
|
|
|
|
|
|
|
class Attachment < ActiveRecord::Base
|
2010-09-17 21:05:11 +00:00
|
|
|
has_and_belongs_to_many :email_template
|
2010-10-09 08:35:41 +00:00
|
|
|
belongs_to :campaign
|
2010-09-20 21:41:50 +00:00
|
|
|
|
|
|
|
# Generate a unique Content-ID
|
|
|
|
def cid
|
|
|
|
@cid ||= Rex::Text.to_hex(name + id.to_s, '')
|
|
|
|
@cid
|
|
|
|
end
|
2010-09-13 08:25:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|