Changeset 949 for trunk/Packages/Common/Mail.php
- Timestamp:
- Apr 24, 2023, 8:26:33 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Mail.php
r935 r949 21 21 private string $Boundary; 22 22 public bool $TestMode; 23 public string $SenderAddress; 24 public string $SenderName; 23 25 24 26 function __construct() … … 72 74 function Organization(string $org): void 73 75 { 74 if (trim($org != '')) $this-> xheaders['Organization'] = $org;76 if (trim($org != '')) $this->Headers['Organization'] = $org; 75 77 } 76 78 … … 81 83 if (!isset($this->Priorities[$Priority - 1])) return false; 82 84 83 $this-> xheaders['X-Priority'] = $this->Priorities[$Priority - 1];85 $this->Headers['X-Priority'] = $this->Priorities[$Priority - 1]; 84 86 return true; 85 87 }
Note:
See TracChangeset
for help on using the changeset viewer.