{"id":30794028,"url":"https://github.com/sendgrid/sendgrid-perl","last_synced_at":"2025-10-11T16:45:49.730Z","repository":{"id":8353431,"uuid":"9915262","full_name":"sendgrid/sendgrid-perl","owner":"sendgrid","description":"Perl module for SendGrid's API","archived":false,"fork":false,"pushed_at":"2016-04-28T06:21:58.000Z","size":545,"stargazers_count":18,"open_issues_count":8,"forks_count":13,"subscribers_count":195,"default_branch":"master","last_synced_at":"2025-09-05T16:46:23.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sendgrid.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-05-07T15:34:17.000Z","updated_at":"2020-09-03T04:56:19.000Z","dependencies_parsed_at":"2022-08-07T03:16:12.005Z","dependency_job_id":null,"html_url":"https://github.com/sendgrid/sendgrid-perl","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sendgrid/sendgrid-perl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sendgrid%2Fsendgrid-perl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sendgrid%2Fsendgrid-perl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sendgrid%2Fsendgrid-perl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sendgrid%2Fsendgrid-perl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sendgrid","download_url":"https://codeload.github.com/sendgrid/sendgrid-perl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sendgrid%2Fsendgrid-perl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279007975,"owners_count":26084369,"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-10-11T02:00:06.511Z","response_time":55,"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":[],"created_at":"2025-09-05T16:26:53.944Z","updated_at":"2025-10-11T16:45:49.725Z","avatar_url":"https://github.com/sendgrid.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"**IMPORTANT ANNOUNCEMENT**\n\n**As of May 1, 2016, SendGrid will no longer support this library.**\n\nPlease direct any questions to the [Developer Experience](mailto:dx@sendgrid.com) team.\n\n[![Build Status](https://travis-ci.org/sendgrid/sendgrid-perl.png?branch=master)](https://travis-ci.org/sendgrid/sendgrid-perl)\n\n#sendgrid-perl\nSend emails via SendGrid. Provides wrapper for custom SMTP API fields\nand allows for easy manipulation of filter/app settings.\n\nWritten by Tim Jenkins.\n\n#License\nLicensed under the MIT License.\n\n#Install\nWe are currently working on getting this module on CPAN. In the\nmeantime, you can install from the included archive.\n\n    git clone https://github.com/sendgrid/sendgrid-perl.git\n    cd sendgrid-perl\n    sudo cpanm SendGrid-1.3.tar.gz\n\nYou can also build the archive yourself:\n    \n    perl Makefile.PL\n    make\n    make test\n    make dist\n\n#Basic usage\n\nFor authentication, please use either your SendGrid credentials or an [API key](https://sendgrid.com/docs/User_Guide/Account/api_keys.html).\n\n```perl\nuse warnings;\nuse strict;\n\nuse Email::SendGrid;\nuse Email::SendGrid::Transport::REST;\n\nmy $sg = Email::SendGrid-\u003enew( from =\u003e 'from@example.com',\n                              to =\u003e 'to@example.com',\n                              subject =\u003e 'Testing',\n                              text =\u003e \"Some text http://sendgrid.com/\\n\",\n                              html =\u003e '\u003chtml\u003e\u003cbody\u003eSome html\n                                                  \u003ca href=\"http://sendgrid.com\"\u003eSG\u003c/a\u003e\n                                       \u003c/body\u003e\u003c/html\u003e' );\n\n#disable click tracking filter for this request\n$sg-\u003edisableClickTracking();\n\n#turn on the unsubscribe filter here with custom values\n$sg-\u003eenableUnsubscribe( text =\u003e \"Unsubscribe here: \u003c% %\u003e\", html =\u003e \"Unsubscribe \u003c% here %\u003e\" );\n\n#set a category\n$sg-\u003eheader-\u003esetCategory('first contact');\n\n#add unique arguments\n$sg-\u003eheader-\u003eaddUniqueIdentifier( customer =\u003e '12345', location =\u003e 'somewhere' );\n\nmy $trans = Email::SendGrid::Transport::REST-\u003enew( username =\u003e 'sendgrid_username', password =\u003e 'sendgrid_password' );\n\nmy $error = $trans-\u003edeliver($sg);\ndie $error if ( $error );\n```\n\n#Advanced Usage\nFor more detailed information, please refer to the perldocs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsendgrid%2Fsendgrid-perl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsendgrid%2Fsendgrid-perl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsendgrid%2Fsendgrid-perl/lists"}