Edit
by Zinsou YANSOUNOU - 5 years ago (2019-08-01)
I want email to send to users after authentication
| After an user authentication with username and password users shall receive email with accounts details |
- 1 Clarification request
1.
by harinarayan js - 5 years ago (2020-02-17) Reply
Ask clarification
2 Recommendations
Class that may be used to compose and send e-mail messages.
It features:
- User definable headers and body parts.
- MIME encoding of text and HTML body parts with user defined character encoding using quoted-printable.
- Addition of file parts (attachments) with automatic content type detection.
- Forwarding of messages received from somebody else as intact attachments
- Support for multipart/related messages (eg. HTML messages with embedded images, stylesheets, frames, etc..)
- Support for multipart/alternative messages (eg. text and HTML versions in the same message).
- Encoding of message headers with user defined character encoding using q-encoding.
- Definition of the error delivery address setting the Return-Path header calling sendmail program directly.
- Several sub-classes for sending messages by different methods: PHP mail() function, sendmail, qmail, SMTP (with support for authentication and direct delivery mode), maildrop in Microsoft IIS or Exchange Pickup folder.
- Wrappers that emulate the mail() function using the SMTP, sendmail and qmail delivery sub-classes.
- Support for sending personalized bulk mail by replacing the contents of the message parts that differ for each recipient.
- HTML and plain text message parts can be composed using template engines. An example that works with Smarty template engine is provided.
- Retrieving the composed message data or size without sending the message
| by Manuel Lemos package author 26695 - 5 years ago (2019-08-02) Comment
You can use this package to compose and send email messages that can be delivery by several means including SMTP.
You also need the the SMTP E-mail sending class to be used together with this MIME message package.
https://www.phpclasses.org/package/14-PHP-Sends-e-mail-messages-via-SMTP-protocol.html |
PHP Mail Class: Compose and send email using mail function or SMTP
This class can compose and send email using mail function or SMTP.
It can compose a message by setting several types of parameters like the sender and recepient names and addresses, the message subject and body in text or HTML formats, etc..
The class can send the message either using the PHP mail() function or connecting to a SMTP server to relay the message.
| by Muhammad Umer Farooq package author 135 - 5 years ago (2019-08-02) Comment
You can use this package to send emails to user, you may call the class after authentication |