| 1 |
<?php |
<?php |
| 2 |
// $Id: simplenews.module,v 1.76.2.132 2009/05/08 07:59:34 sutharsan Exp $ |
// $Id: simplenews.module,v 1.76.2.133 2009/08/09 10:46:45 sutharsan Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @defgroup simplenews |
* @defgroup simplenews |
| 1945 |
$name = variable_get('simplenews_from_name', $name_default); |
$name = variable_get('simplenews_from_name', $name_default); |
| 1946 |
} |
} |
| 1947 |
|
|
| 1948 |
|
// Windows based PHP systems don't accept formatted emails. |
| 1949 |
|
$formatted_address = substr(PHP_OS, 0, 3) == 'WIN' ? $address : '"'. mime_header_encode($name) .'" <'. $address .'>'; |
| 1950 |
|
|
| 1951 |
return array( |
return array( |
| 1952 |
'address' => $address, |
'address' => $address, |
| 1953 |
'formatted' => '"'. mime_header_encode($name) .'" <'. $address .'>', |
'formatted' => $formatted_address, |
| 1954 |
); |
); |
| 1955 |
} |
} |
| 1956 |
|
|