| 1 |
<?php |
<?php |
| 2 |
// $Id: simplenews.module,v 1.76.2.133 2009/08/09 10:46:45 sutharsan Exp $ |
// $Id: simplenews.module,v 1.76.2.134 2009/08/30 12:50:13 sutharsan Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @defgroup simplenews |
* @defgroup simplenews |
| 2243 |
*/ |
*/ |
| 2244 |
function _simplenews_format_options() { |
function _simplenews_format_options() { |
| 2245 |
$options = array('plain' => t('plain')); |
$options = array('plain' => t('plain')); |
| 2246 |
if (module_exists('mimemail')) { |
if (module_exists('mimemail') || module_exists('htmlmail')) { |
| 2247 |
$options['html'] = t('html'); |
$options['html'] = t('html'); |
| 2248 |
} |
} |
| 2249 |
return $options; |
return $options; |