Jump to content

umer_lala

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

umer_lala's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 1- class.phpmailer.php 2- class.smtp.php Download these both files from http://sourceforge.net/project/showfiles.php?group_id=26031 or from here http://phpmailer.codeworxtech.com/ include these both file in your index page and use this code in index file $mail = new phpmailer(); $mail->From = $FromName; $mail->FromName = ""; $mail->Subject = ""; $mail->Body = $strMessage; $mail->AddAddress($row["fld_email"], ""); $mail->AddAttachment($path, $file_url); if(!$mail->Send()) echo "There has been a mail error"; else echo"Mail have been send "; //Clear all addresses and attachments for next loop $mail->ClearAddresses(); $mail->ClearAttachments(); }
  2. I want to check the propertise and attribute of a php or xkl file. Like Last Modify time last created time, file size both online file and locally
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.