lib/content_block_tools/presenters/field_presenters/contact/email_address_presenter.rb



module ContentBlockTools
  module Presenters
    module FieldPresenters
      module Contact
        class EmailAddressPresenter < BasePresenter
          def render
            content_tag(:a, field, class: "govuk-link", href: "mailto:#{field}")
          end
        end
      end
    end
  end
end