class Mail::Message

def mime_version=( val )

mail.mime_version #=> '1.0'
mail.mime_version = '1.0'

Example:

Sets the MIME version of the email by accepting a string
def mime_version=( val )
  header[:mime_version] = val
end