Changeset 868 for trunk/Modules/Notify/Notify.php
- Timestamp:
- Jan 13, 2020, 1:10:38 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Notify/Notify.php
r867 r868 97 97 { 98 98 $Mail = new Mail(); 99 $Mail->Subject = 'Notification';99 $Mail->Subject = $Title; 100 100 $Mail->AddTo($User['Value'], $User['Name']); 101 101 $Mail->AddBody(strip_tags($Content), 'text/plain'); … … 109 109 $Output .= strip_tags(str_replace("</", " </", str_replace('<br/>', "\n", $Content))); 110 110 } 111 112 return($Output);113 111 } 114 112 … … 121 119 ); 122 120 } 121 122 return($Output); 123 123 } 124 124
Note:
See TracChangeset
for help on using the changeset viewer.