Changeset 1349 for branches/1.2
- Timestamp:
- 03/19/10 02:14:31 (3 years ago)
- File:
-
- 1 edited
-
branches/1.2/libs/EmailFunctions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/libs/EmailFunctions.php
r1336 r1349 64 64 if (!$this->from) { $this->from = SITE_NAME . ' <' . SITE_EMAIL . '>'; } 65 65 66 if (SMTP _ON== 'true') {66 if (SMTP == 'true') { 67 67 // note: this overwrites headers passed to this function: 68 68 $this->headers = array ('From' => $this->from, 'To' => $this->to['To'], 'Subject' => $this->subject); … … 96 96 break; 97 97 default: 98 if (SMTP _ON== 'true') {98 if (SMTP == 'true') { 99 99 $this->doSmtpEmail(); 100 100 } else {
Note: See TracChangeset
for help on using the changeset viewer.