drips / mail
PHP-Mailsystem basierend auf PhpMailer
v1.0.0
2016-07-22 14:44 UTC
Requires
- php: >=5.4
- drips/config: ^1.0
- phpmailer/phpmailer: ~5.2
This package is not auto-updated.
Last update: 2024-11-07 00:48:31 UTC
README
Beschreibung
Mailer basierend auf PHPMailer.
Konfiguration
mail_smtp
- legt fest ob ein SMTP Server verwendet werden soll (true/false)mail_smtp_host
- SMTP Host angebenmail_smtp_auth
- legt fest ob Authentifizierung erforderlich ist (true/false)mail_smtp_username
- Benutzernamemail_smtp_password
- Passwortmail_smtp_secure
- Verschlüsselungmail_smtp_port
- Portmail_from_email
- (optional) Emailadresse von der die Emails standardmäßig abgesendet werden sollenmail_from_name
- (optional) Absendername, der angezeigt wirdmail_cc
- (optional) Kopie der Email an mehrere Empfängermail_bcc
- (optional) Blindkopie der Email
Beispiel
<?php use Drips\Mail\Mail; $mail = new Mail; $mail->addAddress('test@prowect.com', 'Test'); // Empfänger hinzufügen (zweiter Parameter ist optional); $mail->addReplyTo('test@prowect.com', '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 }