PHP code example of drips / mail
1. Go to this page and download the library: Download drips/mail library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
drips / mail example snippets
use Drips\Mail\Mail;
$mail = new Mail;
$mail->addAddress('[email protected]', 'Test'); // Empfänger hinzufügen (zweiter Parameter ist optional);
$mail->addReplyTo('[email protected]', 'Test'); // Empfänger der Antwort-Email
$mail->addAttachment('/test/image.png'); // Anhang hinzufügen
$mail->isHTML(true); // HTML Email Format
$mail->Subject = 'Here is the subject'; // Betreff
$mail->Body = 'This is the body for HTML mail clients'; // Nachricht
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; // Alternativ wenn HTML nicht unterstützt wird
if(!$mail->send()) {
// Email konnte nicht gesendet werden
} else {
// Email wurde erfolgreich gesendet
}