[CLASS] Mail
Door Mark Pieper, 21 jaar geleden, 4.039x bekeken
Met deze class kun je (hopelijk:D) makkelijker mailtjes versturen. Alles spreekt voor zich.
Gebruik:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
error_reporting(E_ALL);
require 'classes/mail.class.php';
$mail = new Mail('html');
$mail -> set_subject('Test mailtje');
$mail -> add_msg('<h1>Ej</h1>');
$mail -> add_msg('<h2>Ej</h2>');
$mail -> add_msg('<p>Ej</p>');
$mail -> set_recipient('Mark Pieper', 'admin@localhost');
$mail -> set_sender('Mark Pieper', 'markpieper@mail');
$mail -> add_cc('admin@localhost');
$mail -> add_cc('postmaster@localhost');
$mail -> send_mail();
?>
error_reporting(E_ALL);
require 'classes/mail.class.php';
$mail = new Mail('html');
$mail -> set_subject('Test mailtje');
$mail -> add_msg('<h1>Ej</h1>');
$mail -> add_msg('<h2>Ej</h2>');
$mail -> add_msg('<p>Ej</p>');
$mail -> set_recipient('Mark Pieper', 'admin@localhost');
$mail -> set_sender('Mark Pieper', 'markpieper@mail');
$mail -> add_cc('admin@localhost');
$mail -> add_cc('postmaster@localhost');
$mail -> send_mail();
?>
Gesponsorde koppelingen
PHP script bestanden
Er zijn 16 reacties op 'Class mail'
Om te reageren heb je een account nodig en je moet ingelogd zijn.
PHP hulp
0 seconden vanaf nu