How can I create a php script which will compress all of the /home/user/public_html/ files and then send the zip as an email attachment to the user: joe@example.com ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by j0k, Radu Murzea, Sjoerd, Sylvain Defresne, Andrea Ligios Jan 27 at 14:16
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
PECL Zip can create the zip for you : http://php.net/manual/fr/book.zip.php. And then you can use Zend Mail (http://framework.zend.com/manual/2.0/en/modules/zend.mail.message.html) or Swift mailer (http://swiftmailer.org/) or whatever to send your mail and add the zip as attachment. |
|||
|
|