| 1 |
<?php |
<?php |
| 2 |
// $Id: simplenews.module,v 1.212 2009/08/05 20:12:42 sutharsan Exp $ |
// $Id: simplenews.module,v 1.213 2009/08/09 10:46:16 sutharsan Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @defgroup simplenews |
* @defgroup simplenews |
| 1978 |
$name = variable_get('simplenews_from_name', $name_default); |
$name = variable_get('simplenews_from_name', $name_default); |
| 1979 |
} |
} |
| 1980 |
|
|
| 1981 |
|
// Windows based PHP systems don't accept formatted emails. |
| 1982 |
|
$formatted_address = substr(PHP_OS, 0, 3) == 'WIN' ? $address : '"'. mime_header_encode($name) .'" <'. $address .'>'; |
| 1983 |
|
|
| 1984 |
return array( |
return array( |
| 1985 |
'address' => $address, |
'address' => $address, |
| 1986 |
'formatted' => '"'. mime_header_encode($name) .'" <'. $address .'>', |
'formatted' => $formatted_address, |
| 1987 |
); |
); |
| 1988 |
} |
} |
| 1989 |
|
|