Sha256: 80b27dc179fb965d147c548d0daa4efd74e330d76c4f5d1bf64e426e22c5f4e1

Contents?: true

Size: 1.14 KB

Versions: 7

Compression:

Stored size: 1.14 KB

Contents

def process_email_addresses context_card, format_args, args
  format(format_args).render_email_addresses(args.merge(context: context_card))
end

format do
  def chunk_list  # turn off autodetection of uri's
    :references
  end
end

format :html do
  view :pointer_items do |args|
    card.item_names(context: :raw).map do |iname|
      wrap_item iname, args
    end.join ", "
  end
end

format :email_text do
  view :email_addresses do |args|
    context = args[:context] || self
    card.item_names(context: context.cardname).map do |item_name|
      # note that context is processed twice here because pointers absolutize
      # item_names by default while other types can return relative names.
      # That's poor default behavior and should be fixed!
      item_name = item_name.to_name.to_absolute(context).to_s
      if item_name =~ /.+\@.+\..+/
        item_name
      elsif (item_card = Card.fetch(item_name))
        if item_card.account
          item_card.account.email
        else
          item_card.contextual_content(context, format: :email_text)
                   .split(/[,\n]/)
        end
      end
    end.flatten.compact.join(", ")
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
card-1.19.6 mod/email/set/right/bcc.rb
card-1.19.5 mod/email/set/right/bcc.rb
card-1.19.4 mod/email/set/right/bcc.rb
card-1.19.3 mod/email/set/right/bcc.rb
card-1.19.2 mod/email/set/right/bcc.rb
card-1.19.1 mod/email/set/right/bcc.rb
card-1.19.0 mod/email/set/right/bcc.rb