{"id":20776429,"url":"https://github.com/fany/emailesque","last_synced_at":"2025-08-31T09:40:46.326Z","repository":{"id":56834360,"uuid":"300957274","full_name":"fany/Emailesque","owner":"fany","description":"Simple Email Sender","archived":false,"fork":false,"pushed_at":"2021-04-25T12:12:27.000Z","size":112,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-27T00:31:03.814Z","etag":null,"topics":["email-sender","perl","perl5"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fany.png","metadata":{"files":{"readme":"README","changelog":"CHANGES","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-03T19:06:24.000Z","updated_at":"2021-04-25T11:54:00.000Z","dependencies_parsed_at":"2022-09-08T07:42:18.555Z","dependency_job_id":null,"html_url":"https://github.com/fany/Emailesque","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/fany/Emailesque","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fany%2FEmailesque","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fany%2FEmailesque/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fany%2FEmailesque/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fany%2FEmailesque/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fany","download_url":"https://codeload.github.com/fany/Emailesque/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fany%2FEmailesque/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272965445,"owners_count":25023069,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["email-sender","perl","perl5"],"created_at":"2024-11-17T13:08:15.285Z","updated_at":"2025-08-31T09:40:46.291Z","avatar_url":"https://github.com/fany.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n\n    Emailesque - Lightweight To-The-Point Email\n\nVERSION\n\n    version 1.26\n\nSYNOPSIS\n\n        use Emailesque qw(\n            email\n        );\n    \n        email {\n            to      =\u003e '...',\n            from    =\u003e '...',\n            subject =\u003e '...',\n            message =\u003e '...',\n        };\n\nDESCRIPTION\n\n    Emailesque provides an easy way of handling text or html email messages\n    with or without attachments. Simply define how you wish to send the\n    email, then call the email keyword passing the necessary parameters as\n    outlined above. This module is basically a wrapper around the email\n    interface Email::Stuffer. The following is an example of the\n    object-oriented interface:\n\nOVERVIEW\n\n        use Emailesque;\n    \n        my $email = Emailesque-\u003enew(\n            to      =\u003e '...',\n            from    =\u003e '...',\n            subject =\u003e '...',\n            message =\u003e '...',\n            files   =\u003e [ '/path/to/file/1', '/path/to/file/2' ],\n        );\n    \n        my $result = $email-\u003esend;\n    \n        if ($result-\u003eisa('Email::Sender::Failure')) {\n            die $result-\u003emessage;\n        }\n\n    The Emailesque object-oriented interface is designed to accept\n    parameters at instatiation and when calling the send method. This\n    allows you to build-up an email object with a few base parameters, then\n    create and send multiple email messages by calling the send method with\n    only the unique parameters. The following is an example of that:\n\n        use Emailesque;\n    \n        my $email = Emailesque-\u003enew(\n            from     =\u003e '...',\n            subject  =\u003e '...',\n            x_mailer =\u003e \"MyApp-Newletter 0.019876\",\n            x_url    =\u003e \"https://mail.to/u/123/welcome\",\n            type     =\u003e 'text',\n        );\n    \n        for my $user (@users) {\n            my $message = msg_generation $user;\n            $email-\u003esend({ to =\u003e $user, message =\u003e $message });\n        }\n\n    The default email format is plain-text, this can be changed to html by\n    setting the option 'type' to 'html'. The following are options that can\n    be passed within the hashref of arguments to the keyword, constructor\n    and/or the send method:\n\n        # send message to\n        $email-\u003eto('...')\n    \n        # send messages from\n        $email-\u003efrom('...')\n    \n        # email subject\n        $email-\u003esubject('...')\n    \n        # message body\n        $email-\u003emessage('...') # html or text data\n    \n        # email message content type (type: text, html, or multi)\n        $email-\u003esend({ type =\u003e 'text' })\n    \n        # message multipart content\n        $email-\u003etype('multi') # must set type to multi\n        $email-\u003emessage({ text =\u003e $text_message, html =\u003e $html_messase })\n    \n        # carbon-copy other email addresses\n        $email-\u003esend({ cc =\u003e 'user@site.com' })\n        $email-\u003esend({ cc =\u003e 'usr1@site.com, usr2@site.com, usr3@site.com' })\n        $email-\u003esend({ cc =\u003e [qw(usr1@site.com usr2@site.com usr3@site.com)] })\n    \n        # blind carbon-copy other email addresses\n        $email-\u003esend({ bcc =\u003e 'user@site.com' })\n        $email-\u003esend({ bcc =\u003e 'usr1@site.com, usr2@site.com, usr3@site.com' })\n        $email-\u003esend({ bcc =\u003e [qw(usr1@site.com usr2@site.com usr3@site.com)] })\n    \n        # specify where email responses should be directed\n        $email-\u003esend({ reply_to =\u003e 'other_email@website.com' })\n    \n        # attach files to the email\n        $email-\u003esend({ files =\u003e [ $file_path_1, $file_path_2 ] })\n    \n        # attach files to the email (and specify attachment name)\n        # set attachment name to undef to use the filename\n        $email-\u003esend({ attach =\u003e [ $file_path =\u003e $attachment_name ] })\n        $email-\u003esend({ attach =\u003e [ $file_path =\u003e undef ] })\n    \n        # send additional headers explicitly\n        $email-\u003esend({ headers  =\u003e { 'X-Mailer' =\u003e '...' } })\n    \n        # send additional headers implicitly\n        $email-\u003esend({ x_mailer =\u003e '...' } # simpler\n\n    The default email transport is sendmail. This can be changed by\n    specifying a different driver parameter, e.g. smtp, as well as any\n    additional arguments required by the transport:\n\n        # send mail via smtp\n        $email-\u003esend({\n            ...,\n            driver  =\u003e 'smtp',\n            host    =\u003e 'smtp.googlemail.com',\n            user    =\u003e 'account@gmail.com',\n            pass    =\u003e '****'\n        })\n    \n        # send mail via smtp via Google (gmail)\n        $email-\u003esend({\n            ...,\n            ssl     =\u003e 1,\n            driver  =\u003e 'smtp',\n            host    =\u003e 'smtp.googlemail.com',\n            port    =\u003e 465,\n            user    =\u003e 'account@gmail.com',\n            pass    =\u003e '****'\n        })\n    \n        # send mail via smtp via Mailchimp (mandrill)\n        $email-\u003esend({\n            ...,\n            ssl     =\u003e 0,\n            driver  =\u003e 'smtp',\n            host    =\u003e 'smtp.mandrillapp.com',\n            port    =\u003e 587,\n            user    =\u003e 'account@domain.com',\n            pass    =\u003e '****'\n        })\n    \n        # send mail via sendmail\n        # path is optional if installed in a standard location\n        $email-\u003esend({\n            ...,\n            driver  =\u003e 'sendmail',\n            path    =\u003e '/usr/bin/sendmail',\n        })\n\nMETHODS\n\n accept_language\n\n        my $header = $email-\u003eaccept_language;\n           $header = $email-\u003eaccept_language('...');\n\n    The accept_language method is a shortcut for getting and setting the\n    Accept-Language header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n alternate_recipient\n\n        my $header = $email-\u003ealternate_recipient;\n           $header = $email-\u003ealternate_recipient('...');\n\n    The alternate_recipient method is a shortcut for getting and setting\n    the Alternate-Recipient header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n apparently_to\n\n        my $header = $email-\u003eapparently_to;\n           $header = $email-\u003eapparently_to('...');\n\n    The apparently_to method is a shortcut for getting and setting the\n    Apparently-To header. This header is described in more detail within\n    RFC2076 http://www.iana.org/go/rfc2076.\n\n archived_at\n\n        my $header = $email-\u003earchived_at;\n           $header = $email-\u003earchived_at('...');\n\n    The archived_at method is a shortcut for getting and setting the\n    Archived-At header. This header is described in more detail within\n    RFC5064 http://www.iana.org/go/rfc5064.\n\n authentication_results\n\n        my $header = $email-\u003eauthentication_results;\n           $header = $email-\u003eauthentication_results('...');\n\n    The authentication_results method is a shortcut for getting and setting\n    the Authentication-Results header. This header is described in more\n    detail within RFC7001 http://www.iana.org/go/rfc7001.\n\n auto_submitted\n\n        my $header = $email-\u003eauto_submitted;\n           $header = $email-\u003eauto_submitted('...');\n\n    The auto_submitted method is a shortcut for getting and setting the\n    Auto-Submitted header. This header is described in more detail within\n    RFC3834 http://www.iana.org/go/rfc3834.\n\n autoforwarded\n\n        my $header = $email-\u003eautoforwarded;\n           $header = $email-\u003eautoforwarded('...');\n\n    The autoforwarded method is a shortcut for getting and setting the\n    Autoforwarded header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n autosubmitted\n\n        my $header = $email-\u003eautosubmitted;\n           $header = $email-\u003eautosubmitted('...');\n\n    The autosubmitted method is a shortcut for getting and setting the\n    Autosubmitted header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n bcc\n\n        my $header = $email-\u003ebcc;\n           $header = $email-\u003ebcc('...');\n\n    The bcc method is a shortcut for getting and setting the Bcc header.\n    This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n cc\n\n        my $header = $email-\u003ecc;\n           $header = $email-\u003ecc('...');\n\n    The cc method is a shortcut for getting and setting the Cc header. This\n    header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n comments\n\n        my $header = $email-\u003ecomments;\n           $header = $email-\u003ecomments('...');\n\n    The comments method is a shortcut for getting and setting the Comments\n    header. This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n content_identifier\n\n        my $header = $email-\u003econtent_identifier;\n           $header = $email-\u003econtent_identifier('...');\n\n    The content_identifier method is a shortcut for getting and setting the\n    Content-Identifier header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n content_return\n\n        my $header = $email-\u003econtent_return;\n           $header = $email-\u003econtent_return('...');\n\n    The content_return method is a shortcut for getting and setting the\n    Content-Return header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n conversion\n\n        my $header = $email-\u003econversion;\n           $header = $email-\u003econversion('...');\n\n    The conversion method is a shortcut for getting and setting the\n    Conversion header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n conversion_with_loss\n\n        my $header = $email-\u003econversion_with_loss;\n           $header = $email-\u003econversion_with_loss('...');\n\n    The conversion_with_loss method is a shortcut for getting and setting\n    the Conversion-With-Loss header. This header is described in more\n    detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n dkim_signature\n\n        my $header = $email-\u003edkim_signature;\n           $header = $email-\u003edkim_signature('...');\n\n    The dkim_signature method is a shortcut for getting and setting the\n    DKIM-Signature header. This header is described in more detail within\n    RFC6376 http://www.iana.org/go/rfc6376.\n\n dl_expansion_history\n\n        my $header = $email-\u003edl_expansion_history;\n           $header = $email-\u003edl_expansion_history('...');\n\n    The dl_expansion_history method is a shortcut for getting and setting\n    the DL-Expansion-History header. This header is described in more\n    detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n date\n\n        my $header = $email-\u003edate;\n           $header = $email-\u003edate('...');\n\n    The date method is a shortcut for getting and setting the Date header.\n    This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n deferred_delivery\n\n        my $header = $email-\u003edeferred_delivery;\n           $header = $email-\u003edeferred_delivery('...');\n\n    The deferred_delivery method is a shortcut for getting and setting the\n    Deferred-Delivery header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n delivery_date\n\n        my $header = $email-\u003edelivery_date;\n           $header = $email-\u003edelivery_date('...');\n\n    The delivery_date method is a shortcut for getting and setting the\n    Delivery-Date header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n discarded_x400_ipms_extensions\n\n        my $header = $email-\u003ediscarded_x400_ipms_extensions;\n           $header = $email-\u003ediscarded_x400_ipms_extensions('...');\n\n    The discarded_x400_ipms_extensions method is a shortcut for getting and\n    setting the Discarded-X400-IPMS-Extensions header. This header is\n    described in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n discarded_x400_mts_extensions\n\n        my $header = $email-\u003ediscarded_x400_mts_extensions;\n           $header = $email-\u003ediscarded_x400_mts_extensions('...');\n\n    The discarded_x400_mts_extensions method is a shortcut for getting and\n    setting the Discarded-X400-MTS-Extensions header. This header is\n    described in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n disclose_recipients\n\n        my $header = $email-\u003edisclose_recipients;\n           $header = $email-\u003edisclose_recipients('...');\n\n    The disclose_recipients method is a shortcut for getting and setting\n    the Disclose-Recipients header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n disposition_notification_options\n\n        my $header = $email-\u003edisposition_notification_options;\n           $header = $email-\u003edisposition_notification_options('...');\n\n    The disposition_notification_options method is a shortcut for getting\n    and setting the Disposition-Notification-Options header. This header is\n    described in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n disposition_notification_to\n\n        my $header = $email-\u003edisposition_notification_to;\n           $header = $email-\u003edisposition_notification_to('...');\n\n    The disposition_notification_to method is a shortcut for getting and\n    setting the Disposition-Notification-To header. This header is\n    described in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n downgraded_bcc\n\n        my $header = $email-\u003edowngraded_bcc;\n           $header = $email-\u003edowngraded_bcc('...');\n\n    The downgraded_bcc method is a shortcut for getting and setting the\n    Downgraded-Bcc header. This header is described in more detail within\n    RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_cc\n\n        my $header = $email-\u003edowngraded_cc;\n           $header = $email-\u003edowngraded_cc('...');\n\n    The downgraded_cc method is a shortcut for getting and setting the\n    Downgraded-Cc header. This header is described in more detail within\n    RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_disposition_notification_to\n\n        my $header = $email-\u003edowngraded_disposition_notification_to;\n           $header = $email-\u003edowngraded_disposition_notification_to('...');\n\n    The downgraded_disposition_notification_to method is a shortcut for\n    getting and setting the Downgraded-Disposition-Notification-To header.\n    This header is described in more detail within RFC5504\n    http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_final_recipient\n\n        my $header = $email-\u003edowngraded_final_recipient;\n           $header = $email-\u003edowngraded_final_recipient('...');\n\n    The downgraded_final_recipient method is a shortcut for getting and\n    setting the Downgraded-Final-Recipient header. This header is described\n    in more detail within RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_from\n\n        my $header = $email-\u003edowngraded_from;\n           $header = $email-\u003edowngraded_from('...');\n\n    The downgraded_from method is a shortcut for getting and setting the\n    Downgraded-From header. This header is described in more detail within\n    RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_in_reply_to\n\n        my $header = $email-\u003edowngraded_in_reply_to;\n           $header = $email-\u003edowngraded_in_reply_to('...');\n\n    The downgraded_in_reply_to method is a shortcut for getting and setting\n    the Downgraded-In-Reply-To header. This header is described in more\n    detail within RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_mail_from\n\n        my $header = $email-\u003edowngraded_mail_from;\n           $header = $email-\u003edowngraded_mail_from('...');\n\n    The downgraded_mail_from method is a shortcut for getting and setting\n    the Downgraded-Mail-From header. This header is described in more\n    detail within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_message_id\n\n        my $header = $email-\u003edowngraded_message_id;\n           $header = $email-\u003edowngraded_message_id('...');\n\n    The downgraded_message_id method is a shortcut for getting and setting\n    the Downgraded-Message-Id header. This header is described in more\n    detail within RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_original_recipient\n\n        my $header = $email-\u003edowngraded_original_recipient;\n           $header = $email-\u003edowngraded_original_recipient('...');\n\n    The downgraded_original_recipient method is a shortcut for getting and\n    setting the Downgraded-Original-Recipient header. This header is\n    described in more detail within RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_rcpt_to\n\n        my $header = $email-\u003edowngraded_rcpt_to;\n           $header = $email-\u003edowngraded_rcpt_to('...');\n\n    The downgraded_rcpt_to method is a shortcut for getting and setting the\n    Downgraded-Rcpt-To header. This header is described in more detail\n    within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_references\n\n        my $header = $email-\u003edowngraded_references;\n           $header = $email-\u003edowngraded_references('...');\n\n    The downgraded_references method is a shortcut for getting and setting\n    the Downgraded-References header. This header is described in more\n    detail within RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_reply_to\n\n        my $header = $email-\u003edowngraded_reply_to;\n           $header = $email-\u003edowngraded_reply_to('...');\n\n    The downgraded_reply_to method is a shortcut for getting and setting\n    the Downgraded-Reply-To header. This header is described in more detail\n    within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_resent_bcc\n\n        my $header = $email-\u003edowngraded_resent_bcc;\n           $header = $email-\u003edowngraded_resent_bcc('...');\n\n    The downgraded_resent_bcc method is a shortcut for getting and setting\n    the Downgraded-Resent-Bcc header. This header is described in more\n    detail within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_resent_cc\n\n        my $header = $email-\u003edowngraded_resent_cc;\n           $header = $email-\u003edowngraded_resent_cc('...');\n\n    The downgraded_resent_cc method is a shortcut for getting and setting\n    the Downgraded-Resent-Cc header. This header is described in more\n    detail within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_resent_from\n\n        my $header = $email-\u003edowngraded_resent_from;\n           $header = $email-\u003edowngraded_resent_from('...');\n\n    The downgraded_resent_from method is a shortcut for getting and setting\n    the Downgraded-Resent-From header. This header is described in more\n    detail within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_resent_reply_to\n\n        my $header = $email-\u003edowngraded_resent_reply_to;\n           $header = $email-\u003edowngraded_resent_reply_to('...');\n\n    The downgraded_resent_reply_to method is a shortcut for getting and\n    setting the Downgraded-Resent-Reply-To header. This header is described\n    in more detail within RFC5504 http://www.iana.org/go/rfc5504 and\n    RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_resent_sender\n\n        my $header = $email-\u003edowngraded_resent_sender;\n           $header = $email-\u003edowngraded_resent_sender('...');\n\n    The downgraded_resent_sender method is a shortcut for getting and\n    setting the Downgraded-Resent-Sender header. This header is described\n    in more detail within RFC5504 http://www.iana.org/go/rfc5504 and\n    RFC6857 http://www.iana.org/go/rfc6857.\n\n downgraded_resent_to\n\n        my $header = $email-\u003edowngraded_resent_to;\n           $header = $email-\u003edowngraded_resent_to('...');\n\n    The downgraded_resent_to method is a shortcut for getting and setting\n    the Downgraded-Resent-To header. This header is described in more\n    detail within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_return_path\n\n        my $header = $email-\u003edowngraded_return_path;\n           $header = $email-\u003edowngraded_return_path('...');\n\n    The downgraded_return_path method is a shortcut for getting and setting\n    the Downgraded-Return-Path header. This header is described in more\n    detail within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_sender\n\n        my $header = $email-\u003edowngraded_sender;\n           $header = $email-\u003edowngraded_sender('...');\n\n    The downgraded_sender method is a shortcut for getting and setting the\n    Downgraded-Sender header. This header is described in more detail\n    within RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n downgraded_to\n\n        my $header = $email-\u003edowngraded_to;\n           $header = $email-\u003edowngraded_to('...');\n\n    The downgraded_to method is a shortcut for getting and setting the\n    Downgraded-To header. This header is described in more detail within\n    RFC5504 http://www.iana.org/go/rfc5504 and RFC6857\n    http://www.iana.org/go/rfc6857.\n\n ediint_features\n\n        my $header = $email-\u003eediint_features;\n           $header = $email-\u003eediint_features('...');\n\n    The ediint_features method is a shortcut for getting and setting the\n    EDIINT-Features header. This header is described in more detail within\n    RFC6017 http://www.iana.org/go/rfc6017.\n\n encoding\n\n        my $header = $email-\u003eencoding;\n           $header = $email-\u003eencoding('...');\n\n    The encoding method is a shortcut for getting and setting the Encoding\n    header. This header is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n encrypted\n\n        my $header = $email-\u003eencrypted;\n           $header = $email-\u003eencrypted('...');\n\n    The encrypted method is a shortcut for getting and setting the\n    Encrypted header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n errors_to\n\n        my $header = $email-\u003eerrors_to;\n           $header = $email-\u003eerrors_to('...');\n\n    The errors_to method is a shortcut for getting and setting the\n    Errors-To header. This header is described in more detail within\n    RFC2076 http://www.iana.org/go/rfc2076.\n\n expires\n\n        my $header = $email-\u003eexpires;\n           $header = $email-\u003eexpires('...');\n\n    The expires method is a shortcut for getting and setting the Expires\n    header. This header is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n expiry_date\n\n        my $header = $email-\u003eexpiry_date;\n           $header = $email-\u003eexpiry_date('...');\n\n    The expiry_date method is a shortcut for getting and setting the\n    Expiry-Date header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n from\n\n        my $header = $email-\u003efrom;\n           $header = $email-\u003efrom('...');\n\n    The from method is a shortcut for getting and setting the From header.\n    This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322 and RFC6854\n    http://www.iana.org/go/rfc6854.\n\n generate_delivery_report\n\n        my $header = $email-\u003egenerate_delivery_report;\n           $header = $email-\u003egenerate_delivery_report('...');\n\n    The generate_delivery_report method is a shortcut for getting and\n    setting the Generate-Delivery-Report header. This header is described\n    in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n header\n\n        my $header = $email-\u003eheader('X-Tag');\n           $header = $email-\u003eheader('X-Tag', '...');\n\n    The header method is used for getting and setting arbitrary headers by\n    name.\n\n importance\n\n        my $header = $email-\u003eimportance;\n           $header = $email-\u003eimportance('...');\n\n    The importance method is a shortcut for getting and setting the\n    Importance header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n in_reply_to\n\n        my $header = $email-\u003ein_reply_to;\n           $header = $email-\u003ein_reply_to('...');\n\n    The in_reply_to method is a shortcut for getting and setting the\n    In-Reply-To header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n incomplete_copy\n\n        my $header = $email-\u003eincomplete_copy;\n           $header = $email-\u003eincomplete_copy('...');\n\n    The incomplete_copy method is a shortcut for getting and setting the\n    Incomplete-Copy header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n jabber_id\n\n        my $header = $email-\u003ejabber_id;\n           $header = $email-\u003ejabber_id('...');\n\n    The jabber_id method is a shortcut for getting and setting the\n    Jabber-ID header. This header is described in more detail within\n    RFC7259 http://www.iana.org/go/rfc7259.\n\n keywords\n\n        my $header = $email-\u003ekeywords;\n           $header = $email-\u003ekeywords('...');\n\n    The keywords method is a shortcut for getting and setting the Keywords\n    header. This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n language\n\n        my $header = $email-\u003elanguage;\n           $header = $email-\u003elanguage('...');\n\n    The language method is a shortcut for getting and setting the Language\n    header. This header is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n latest_delivery_time\n\n        my $header = $email-\u003elatest_delivery_time;\n           $header = $email-\u003elatest_delivery_time('...');\n\n    The latest_delivery_time method is a shortcut for getting and setting\n    the Latest-Delivery-Time header. This header is described in more\n    detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n list_archive\n\n        my $header = $email-\u003elist_archive;\n           $header = $email-\u003elist_archive('...');\n\n    The list_archive method is a shortcut for getting and setting the\n    List-Archive header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n list_help\n\n        my $header = $email-\u003elist_help;\n           $header = $email-\u003elist_help('...');\n\n    The list_help method is a shortcut for getting and setting the\n    List-Help header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n list_id\n\n        my $header = $email-\u003elist_id;\n           $header = $email-\u003elist_id('...');\n\n    The list_id method is a shortcut for getting and setting the List-ID\n    header. This header is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n list_owner\n\n        my $header = $email-\u003elist_owner;\n           $header = $email-\u003elist_owner('...');\n\n    The list_owner method is a shortcut for getting and setting the\n    List-Owner header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n list_post\n\n        my $header = $email-\u003elist_post;\n           $header = $email-\u003elist_post('...');\n\n    The list_post method is a shortcut for getting and setting the\n    List-Post header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n list_subscribe\n\n        my $header = $email-\u003elist_subscribe;\n           $header = $email-\u003elist_subscribe('...');\n\n    The list_subscribe method is a shortcut for getting and setting the\n    List-Subscribe header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n list_unsubscribe\n\n        my $header = $email-\u003elist_unsubscribe;\n           $header = $email-\u003elist_unsubscribe('...');\n\n    The list_unsubscribe method is a shortcut for getting and setting the\n    List-Unsubscribe header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n mmhs_acp127_message_identifier\n\n        my $header = $email-\u003emmhs_acp127_message_identifier;\n           $header = $email-\u003emmhs_acp127_message_identifier('...');\n\n    The mmhs_acp127_message_identifier method is a shortcut for getting and\n    setting the MMHS-Acp127-Message-Identifier header. This header is\n    described in more detail within RFC6477 http://www.iana.org/go/rfc6477\n    and ACP123 http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_codress_message_indicator\n\n        my $header = $email-\u003emmhs_codress_message_indicator;\n           $header = $email-\u003emmhs_codress_message_indicator('...');\n\n    The mmhs_codress_message_indicator method is a shortcut for getting and\n    setting the MMHS-Codress-Message-Indicator header. This header is\n    described in more detail within RFC6477 http://www.iana.org/go/rfc6477\n    and ACP123 http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_copy_precedence\n\n        my $header = $email-\u003emmhs_copy_precedence;\n           $header = $email-\u003emmhs_copy_precedence('...');\n\n    The mmhs_copy_precedence method is a shortcut for getting and setting\n    the MMHS-Copy-Precedence header. This header is described in more\n    detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_exempted_address\n\n        my $header = $email-\u003emmhs_exempted_address;\n           $header = $email-\u003emmhs_exempted_address('...');\n\n    The mmhs_exempted_address method is a shortcut for getting and setting\n    the MMHS-Exempted-Address header. This header is described in more\n    detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_extended_authorisation_info\n\n        my $header = $email-\u003emmhs_extended_authorisation_info;\n           $header = $email-\u003emmhs_extended_authorisation_info('...');\n\n    The mmhs_extended_authorisation_info method is a shortcut for getting\n    and setting the MMHS-Extended-Authorisation-Info header. This header is\n    described in more detail within RFC6477 http://www.iana.org/go/rfc6477\n    and ACP123 http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_handling_instructions\n\n        my $header = $email-\u003emmhs_handling_instructions;\n           $header = $email-\u003emmhs_handling_instructions('...');\n\n    The mmhs_handling_instructions method is a shortcut for getting and\n    setting the MMHS-Handling-Instructions header. This header is described\n    in more detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_message_instructions\n\n        my $header = $email-\u003emmhs_message_instructions;\n           $header = $email-\u003emmhs_message_instructions('...');\n\n    The mmhs_message_instructions method is a shortcut for getting and\n    setting the MMHS-Message-Instructions header. This header is described\n    in more detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_message_type\n\n        my $header = $email-\u003emmhs_message_type;\n           $header = $email-\u003emmhs_message_type('...');\n\n    The mmhs_message_type method is a shortcut for getting and setting the\n    MMHS-Message-Type header. This header is described in more detail\n    within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_originator_plad\n\n        my $header = $email-\u003emmhs_originator_plad;\n           $header = $email-\u003emmhs_originator_plad('...');\n\n    The mmhs_originator_plad method is a shortcut for getting and setting\n    the MMHS-Originator-PLAD header. This header is described in more\n    detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_originator_reference\n\n        my $header = $email-\u003emmhs_originator_reference;\n           $header = $email-\u003emmhs_originator_reference('...');\n\n    The mmhs_originator_reference method is a shortcut for getting and\n    setting the MMHS-Originator-Reference header. This header is described\n    in more detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_other_recipients_indicator_cc\n\n        my $header = $email-\u003emmhs_other_recipients_indicator_cc;\n           $header = $email-\u003emmhs_other_recipients_indicator_cc('...');\n\n    The mmhs_other_recipients_indicator_cc method is a shortcut for getting\n    and setting the MMHS-Other-Recipients-Indicator-CC header. This header\n    is described in more detail within RFC6477\n    http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_other_recipients_indicator_to\n\n        my $header = $email-\u003emmhs_other_recipients_indicator_to;\n           $header = $email-\u003emmhs_other_recipients_indicator_to('...');\n\n    The mmhs_other_recipients_indicator_to method is a shortcut for getting\n    and setting the MMHS-Other-Recipients-Indicator-To header. This header\n    is described in more detail within RFC6477\n    http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_primary_precedence\n\n        my $header = $email-\u003emmhs_primary_precedence;\n           $header = $email-\u003emmhs_primary_precedence('...');\n\n    The mmhs_primary_precedence method is a shortcut for getting and\n    setting the MMHS-Primary-Precedence header. This header is described in\n    more detail within RFC6477 http://www.iana.org/go/rfc6477 and ACP123\n    http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mmhs_subject_indicator_codes\n\n        my $header = $email-\u003emmhs_subject_indicator_codes;\n           $header = $email-\u003emmhs_subject_indicator_codes('...');\n\n    The mmhs_subject_indicator_codes method is a shortcut for getting and\n    setting the MMHS-Subject-Indicator-Codes header. This header is\n    described in more detail within RFC6477 http://www.iana.org/go/rfc6477\n    and ACP123 http://jcs.dtic.mil/j6/cceb/acps/acp123/ACP123B.pdf.\n\n mt_priority\n\n        my $header = $email-\u003emt_priority;\n           $header = $email-\u003emt_priority('...');\n\n    The mt_priority method is a shortcut for getting and setting the\n    MT-Priority header. This header is described in more detail within\n    RFC6758 http://www.iana.org/go/rfc6758.\n\n message\n\n        my $data = $email-\u003emessage({\n            text =\u003e '...',\n            html =\u003e '...',\n        });\n\n    The message method is used for getting and setting the message\n    attribute which is used along with the type attribute to determine how\n    the email message should be constructed. This attribute can be assigned\n    a string or hash reference with text and/or html key/value pairs.\n\n message_context\n\n        my $header = $email-\u003emessage_context;\n           $header = $email-\u003emessage_context('...');\n\n    The message_context method is a shortcut for getting and setting the\n    Message-Context header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n message_id\n\n        my $header = $email-\u003emessage_id;\n           $header = $email-\u003emessage_id('...');\n\n    The message_id method is a shortcut for getting and setting the\n    Message-ID header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n message_type\n\n        my $header = $email-\u003emessage_type;\n           $header = $email-\u003emessage_type('...');\n\n    The message_type method is a shortcut for getting and setting the\n    Message-Type header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n obsoletes\n\n        my $header = $email-\u003eobsoletes;\n           $header = $email-\u003eobsoletes('...');\n\n    The obsoletes method is a shortcut for getting and setting the\n    Obsoletes header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n original_encoded_information_types\n\n        my $header = $email-\u003eoriginal_encoded_information_types;\n           $header = $email-\u003eoriginal_encoded_information_types('...');\n\n    The original_encoded_information_types method is a shortcut for getting\n    and setting the Original-Encoded-Information-Types header. This header\n    is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n original_from\n\n        my $header = $email-\u003eoriginal_from;\n           $header = $email-\u003eoriginal_from('...');\n\n    The original_from method is a shortcut for getting and setting the\n    Original-From header. This header is described in more detail within\n    RFC5703 http://www.iana.org/go/rfc5703.\n\n original_message_id\n\n        my $header = $email-\u003eoriginal_message_id;\n           $header = $email-\u003eoriginal_message_id('...');\n\n    The original_message_id method is a shortcut for getting and setting\n    the Original-Message-ID header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n original_recipient\n\n        my $header = $email-\u003eoriginal_recipient;\n           $header = $email-\u003eoriginal_recipient('...');\n\n    The original_recipient method is a shortcut for getting and setting the\n    Original-Recipient header. This header is described in more detail\n    within RFC3798 http://www.iana.org/go/rfc3798 and RFC5337\n    http://www.iana.org/go/rfc5337.\n\n original_subject\n\n        my $header = $email-\u003eoriginal_subject;\n           $header = $email-\u003eoriginal_subject('...');\n\n    The original_subject method is a shortcut for getting and setting the\n    Original-Subject header. This header is described in more detail within\n    RFC5703 http://www.iana.org/go/rfc5703.\n\n originator_return_address\n\n        my $header = $email-\u003eoriginator_return_address;\n           $header = $email-\u003eoriginator_return_address('...');\n\n    The originator_return_address method is a shortcut for getting and\n    setting the Originator-Return-Address header. This header is described\n    in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n pics_label\n\n        my $header = $email-\u003epics_label;\n           $header = $email-\u003epics_label('...');\n\n    The pics_label method is a shortcut for getting and setting the\n    PICS-Label header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n prevent_nondelivery_report\n\n        my $header = $email-\u003eprevent_nondelivery_report;\n           $header = $email-\u003eprevent_nondelivery_report('...');\n\n    The prevent_nondelivery_report method is a shortcut for getting and\n    setting the Prevent-NonDelivery-Report header. This header is described\n    in more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n priority\n\n        my $header = $email-\u003epriority;\n           $header = $email-\u003epriority('...');\n\n    The priority method is a shortcut for getting and setting the Priority\n    header. This header is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n privicon\n\n        my $header = $email-\u003eprivicon;\n           $header = $email-\u003eprivicon('...');\n\n    The privicon method is a shortcut for getting and setting the Privicon\n    header. This header is described in more detail within\n    http://www.iana.org/go/draft-koenig-privicons.\n\n received\n\n        my $header = $email-\u003ereceived;\n           $header = $email-\u003ereceived('...');\n\n    The received method is a shortcut for getting and setting the Received\n    header. This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322 and RFC5321\n    http://www.iana.org/go/rfc5321.\n\n received_spf\n\n        my $header = $email-\u003ereceived_spf;\n           $header = $email-\u003ereceived_spf('...');\n\n    The received_spf method is a shortcut for getting and setting the\n    Received-SPF header. This header is described in more detail within\n    RFC7208 http://www.iana.org/go/rfc7208.\n\n references\n\n        my $header = $email-\u003ereferences;\n           $header = $email-\u003ereferences('...');\n\n    The references method is a shortcut for getting and setting the\n    References header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n reply_by\n\n        my $header = $email-\u003ereply_by;\n           $header = $email-\u003ereply_by('...');\n\n    The reply_by method is a shortcut for getting and setting the Reply-By\n    header. This header is described in more detail within RFC4021\n    http://www.iana.org/go/rfc4021.\n\n reply_to\n\n        my $header = $email-\u003ereply_to;\n           $header = $email-\u003ereply_to('...');\n\n    The reply_to method is a shortcut for getting and setting the Reply-To\n    header. This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n require_recipient_valid_since\n\n        my $header = $email-\u003erequire_recipient_valid_since;\n           $header = $email-\u003erequire_recipient_valid_since('...');\n\n    The require_recipient_valid_since method is a shortcut for getting and\n    setting the Require-Recipient-Valid-Since header. This header is\n    described in more detail within RFC7293 http://www.iana.org/go/rfc7293.\n\n resent_bcc\n\n        my $header = $email-\u003eresent_bcc;\n           $header = $email-\u003eresent_bcc('...');\n\n    The resent_bcc method is a shortcut for getting and setting the\n    Resent-Bcc header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n resent_cc\n\n        my $header = $email-\u003eresent_cc;\n           $header = $email-\u003eresent_cc('...');\n\n    The resent_cc method is a shortcut for getting and setting the\n    Resent-Cc header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n resent_date\n\n        my $header = $email-\u003eresent_date;\n           $header = $email-\u003eresent_date('...');\n\n    The resent_date method is a shortcut for getting and setting the\n    Resent-Date header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n resent_from\n\n        my $header = $email-\u003eresent_from;\n           $header = $email-\u003eresent_from('...');\n\n    The resent_from method is a shortcut for getting and setting the\n    Resent-From header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322 and RFC6854\n    http://www.iana.org/go/rfc6854.\n\n resent_message_id\n\n        my $header = $email-\u003eresent_message_id;\n           $header = $email-\u003eresent_message_id('...');\n\n    The resent_message_id method is a shortcut for getting and setting the\n    Resent-Message-ID header. This header is described in more detail\n    within RFC5322 http://www.iana.org/go/rfc5322.\n\n resent_reply_to\n\n        my $header = $email-\u003eresent_reply_to;\n           $header = $email-\u003eresent_reply_to('...');\n\n    The resent_reply_to method is a shortcut for getting and setting the\n    Resent-Reply-To header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n resent_sender\n\n        my $header = $email-\u003eresent_sender;\n           $header = $email-\u003eresent_sender('...');\n\n    The resent_sender method is a shortcut for getting and setting the\n    Resent-Sender header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322 and RFC6854\n    http://www.iana.org/go/rfc6854.\n\n resent_to\n\n        my $header = $email-\u003eresent_to;\n           $header = $email-\u003eresent_to('...');\n\n    The resent_to method is a shortcut for getting and setting the\n    Resent-To header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n return_path\n\n        my $header = $email-\u003ereturn_path;\n           $header = $email-\u003ereturn_path('...');\n\n    The return_path method is a shortcut for getting and setting the\n    Return-Path header. This header is described in more detail within\n    RFC5322 http://www.iana.org/go/rfc5322.\n\n sio_label\n\n        my $header = $email-\u003esio_label;\n           $header = $email-\u003esio_label('...');\n\n    The sio_label method is a shortcut for getting and setting the\n    SIO-Label header. This header is described in more detail within\n    RFC7444 http://www.iana.org/go/rfc7444.\n\n sio_label_history\n\n        my $header = $email-\u003esio_label_history;\n           $header = $email-\u003esio_label_history('...');\n\n    The sio_label_history method is a shortcut for getting and setting the\n    SIO-Label-History header. This header is described in more detail\n    within RFC7444 http://www.iana.org/go/rfc7444.\n\n send\n\n        my $result = $email-\u003esend($attributes, @transport_args);\n\n    The send method generates a Email::Stuffer object based on the stashed\n    and passed in attributes, and attempts delivery using the configured\n    transport.\n\n sender\n\n        my $header = $email-\u003esender;\n           $header = $email-\u003esender('...');\n\n    The sender method is a shortcut for getting and setting the Sender\n    header. This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322 and RFC6854\n    http://www.iana.org/go/rfc6854.\n\n sensitivity\n\n        my $header = $email-\u003esensitivity;\n           $header = $email-\u003esensitivity('...');\n\n    The sensitivity method is a shortcut for getting and setting the\n    Sensitivity header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n solicitation\n\n        my $header = $email-\u003esolicitation;\n           $header = $email-\u003esolicitation('...');\n\n    The solicitation method is a shortcut for getting and setting the\n    Solicitation header. This header is described in more detail within\n    RFC3865 http://www.iana.org/go/rfc3865.\n\n subject\n\n        my $header = $email-\u003esubject;\n           $header = $email-\u003esubject('...');\n\n    The subject method is a shortcut for getting and setting the Subject\n    header. This header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n supersedes\n\n        my $header = $email-\u003esupersedes;\n           $header = $email-\u003esupersedes('...');\n\n    The supersedes method is a shortcut for getting and setting the\n    Supersedes header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n to\n\n        my $header = $email-\u003eto;\n           $header = $email-\u003eto('...');\n\n    The to method is a shortcut for getting and setting the To header. This\n    header is described in more detail within RFC5322\n    http://www.iana.org/go/rfc5322.\n\n vbr_info\n\n        my $header = $email-\u003evbr_info;\n           $header = $email-\u003evbr_info('...');\n\n    The vbr_info method is a shortcut for getting and setting the VBR-Info\n    header. This header is described in more detail within RFC5518\n    http://www.iana.org/go/rfc5518.\n\n x_archived_at\n\n        my $header = $email-\u003ex_archived_at;\n           $header = $email-\u003ex_archived_at('...');\n\n    The x_archived_at method is a shortcut for getting and setting the\n    X-Archived-At header. This header is described in more detail within\n    RFC5064 http://www.iana.org/go/rfc5064.\n\n x400_content_identifier\n\n        my $header = $email-\u003ex400_content_identifier;\n           $header = $email-\u003ex400_content_identifier('...');\n\n    The x400_content_identifier method is a shortcut for getting and\n    setting the X400-Content-Identifier header. This header is described in\n    more detail within RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_content_return\n\n        my $header = $email-\u003ex400_content_return;\n           $header = $email-\u003ex400_content_return('...');\n\n    The x400_content_return method is a shortcut for getting and setting\n    the X400-Content-Return header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_content_type\n\n        my $header = $email-\u003ex400_content_type;\n           $header = $email-\u003ex400_content_type('...');\n\n    The x400_content_type method is a shortcut for getting and setting the\n    X400-Content-Type header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_mts_identifier\n\n        my $header = $email-\u003ex400_mts_identifier;\n           $header = $email-\u003ex400_mts_identifier('...');\n\n    The x400_mts_identifier method is a shortcut for getting and setting\n    the X400-MTS-Identifier header. This header is described in more detail\n    within RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_originator\n\n        my $header = $email-\u003ex400_originator;\n           $header = $email-\u003ex400_originator('...');\n\n    The x400_originator method is a shortcut for getting and setting the\n    X400-Originator header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_received\n\n        my $header = $email-\u003ex400_received;\n           $header = $email-\u003ex400_received('...');\n\n    The x400_received method is a shortcut for getting and setting the\n    X400-Received header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_recipients\n\n        my $header = $email-\u003ex400_recipients;\n           $header = $email-\u003ex400_recipients('...');\n\n    The x400_recipients method is a shortcut for getting and setting the\n    X400-Recipients header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\n x400_trace\n\n        my $header = $email-\u003ex400_trace;\n           $header = $email-\u003ex400_trace('...');\n\n    The x400_trace method is a shortcut for getting and setting the\n    X400-Trace header. This header is described in more detail within\n    RFC4021 http://www.iana.org/go/rfc4021.\n\nAUTHOR\n\n    Al Newkirk \u003canewkirk@ana.io\u003e\n\nCONTRIBUTORS\n\n      * Andrew Beverley \u003ca.beverley@ctrlo.com\u003e\n\n      * Eric Johnson \u003ceric.git@iijo.org\u003e\n\n      * Stefan Hornburg \u003cracke@linuxia.de\u003e\n\nCOPYRIGHT AND LICENSE\n\n    This software is copyright (c) 2010 by Al Newkirk.\n\n    This is free software; you can redistribute it and/or modify it under\n    the same terms as the Perl 5 programming language system itself.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffany%2Femailesque","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffany%2Femailesque","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffany%2Femailesque/lists"}