A library to handle email queries

0.1.0 2021-08-04 02:58 UTC

This package is auto-updated.

Last update: 2025-06-04 11:27:17 UTC


README

Install

composer require optiwarindia/mail

Setup

IMAP Settings

IMAP is protocol to open your mailbox within your application. You can connect your mailbox to accept request from email, alternatively, your support tickets can be used to answered through email server. You can also configure to share the mailbox without sharing password for the mail. To setup IMAP you require following from your email server:

  1. hostname
  2. user
  3. password
  4. imap port number
  5. SSL/TLS certificates

SMTP Settings

SMTP is protocol to send mail to another mail servers. You can use this protocol to send custom emails from your application. In order to setup SMTP you require following from your email service provider:

  1. hostname
  2. user
  3. password
  4. smtp port number
  5. SSL / TLS certificate

Reading Mail

Sending Mail