Changeset 930 for trunk/Packages/Common/Mail.php
- Timestamp:
- May 11, 2022, 12:21:42 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Mail.php
r916 r930 135 135 if ($this->AgentIdent != '') $this->Headers['X-Mailer'] = $this->AgentIdent; 136 136 if ($this->ReplyTo != '') $this->Headers['Reply-To'] = $this->ReplyTo; 137 if ($this->From != '') $this->Headers['From'] = $this->From; 137 if ($this->From != '') 138 { 139 $IndexStart = strpos($this->From, '<'); 140 if ($IndexStart !== false) 141 { 142 $this->Headers['From'] = '=?utf-8?Q?'.quoted_printable_encode(trim(substr($this->From, 0, $IndexStart))).'?= '.substr($this->From, $IndexStart); 143 } else 144 { 145 $this->Headers['From'] = $this->From; 146 } 147 } 138 148 139 149 $Headers = '';
Note:
See TracChangeset
for help on using the changeset viewer.