| 1 |
<?php |
| 2 |
/* ----------------------------------------------------------- |
| 3 |
Constants used inside the class. This file is included |
| 4 |
by the class module and these constants an be freely |
| 5 |
used in scripts using MIME_mail class |
| 6 |
----------------------------------------------------------- */ |
| 7 |
|
| 8 |
define('BASE64', 'base64'); |
| 9 |
define('BIT7', '7bit'); |
| 10 |
define('QP', 'quoted_printable'); |
| 11 |
define('NOSUBJECT', '(No Subject)'); |
| 12 |
define('WARNING', 'This is a MIME encoded message'); |
| 13 |
define('OCTET', 'application/octet-stream'); |
| 14 |
define('TEXT', 'text/plain'); |
| 15 |
define('HTML', 'text/html'); |
| 16 |
define('JPEG', 'image/jpg'); |
| 17 |
define('GIF', 'image/gif'); |
| 18 |
define('CRLF', "\r\n"); |
| 19 |
define('CHARSET', 'us-ascii'); |
| 20 |
define('INLINE', 'inline'); |
| 21 |
define('ATTACH', 'attachment'); |
| 22 |
define('BODY', CRLF.'BODY'.CRLF); |
| 23 |
?> |