https://github.com/settermjd/sending-email-in-php
A small repository showing how to send email with PHP in a variety of ways
https://github.com/settermjd/sending-email-in-php
Last synced: 8 months ago
JSON representation
A small repository showing how to send email with PHP in a variety of ways
- Host: GitHub
- URL: https://github.com/settermjd/sending-email-in-php
- Owner: settermjd
- License: apache-2.0
- Created: 2022-12-07T12:21:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T11:59:20.000Z (over 3 years ago)
- Last Synced: 2025-08-01T12:00:25.190Z (11 months ago)
- Language: PHP
- Size: 82 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This is a small package that shows examples of sending emails with PHP
## Prerequisites
To use this package requires the following:
- [Composer](https://getcomposer.org/) installed globally
- [Git](https://git-scm.com/)
- PHP 7.4 or above (ideally 8.1 or 8.2)
- Some prior experience with PHP and sending emails
## Usage
To use the package doesn’t require a lot.
You need to clone the repository locally, and then install the package’s dependencies.
Do both of these by running the command below.
```bash
git clone git@github.com:settermjd/sending-email-in-php.git
cd sending-email-in-php
composer install
```