Changeset 2162112
- Timestamp:
- 09/24/2019 12:23:44 PM (7 years ago)
- Location:
- stars-smtp-mailer/trunk
- Files:
-
- 4 edited
-
action/stars-class-table-layout.php (modified) (2 diffs)
-
action/stars_function.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
stars_smtp_mailer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
stars-smtp-mailer/trunk/action/stars-class-table-layout.php
r2162094 r2162112 249 249 foreach($attachment as $att){ 250 250 $att = explode("/",$att); 251 if(file_exists(stars_smtpm_get_upload_path()." \\".$att[count($att)-1]))unlink(stars_smtpm_get_upload_path()."\\".$att[count($att)-1]);251 if(file_exists(stars_smtpm_get_upload_path()."/".$att[count($att)-1]))unlink(stars_smtpm_get_upload_path()."/".$att[count($att)-1]); 252 252 } 253 253 } … … 291 291 foreach($attachment as $att){ 292 292 $att = explode("/",$att); 293 if(file_exists(stars_smtpm_get_upload_path()." \\".$att[count($att)-1]))unlink(stars_smtpm_get_upload_path()."\\".$att[count($att)-1]);293 if(file_exists(stars_smtpm_get_upload_path()."/".$att[count($att)-1]))unlink(stars_smtpm_get_upload_path()."/".$att[count($att)-1]); 294 294 } 295 295 } -
stars-smtp-mailer/trunk/action/stars_function.php
r2162094 r2162112 384 384 try { 385 385 $phpmailer->addAttachment($attachment); 386 387 $temp = explode("\\",str_replace("/","\\",$attachment)); 388 $fileName = $temp[count($temp)-1]; 386 387 $fileName = basename($attachment); 389 388 if( file_exists(stars_smtpm_get_upload_path()."\\".$fileName) ){ 390 389 $attachmentData[$fileName] = stars_smtpm_get_upload_path(true)."/".$fileName; -
stars-smtp-mailer/trunk/readme.txt
r2162094 r2162112 9 9 Stable tag: trunk 10 10 Homepage: https://myriadsolutionz.com/stars-smtp-mailer 11 Version: 1. 411 Version: 1.5 12 12 13 13 … … 39 39 40 40 == Upgrade Notice == 41 = 1.5 = 42 * Bug fixes and performance improvement 41 43 = 1.4 = 42 44 * Added functionality to keep records of attachments in email log … … 54 56 55 57 == Changelog == 58 = 1.5 = 59 * Bug fixes and performance improvement 56 60 = 1.4 = 57 61 * Added functionality to keep records of attachments in email log -
stars-smtp-mailer/trunk/stars_smtp_mailer.php
r2162094 r2162112 7 7 Author: Myriad Solutionz 8 8 Author URI: https://myriadsolutionz.com/ 9 Version: 1. 49 Version: 1.5 10 10 */ 11 11
Note: See TracChangeset
for help on using the changeset viewer.