Hi,
How do I save images sent as attachment in email, using PHP. Something like Posterous but only for image attachments.
Thanks in advance :-)
Hi,
How do I save images sent as attachment in email, using PHP. Something like Posterous but only for image attachments.
Thanks in advance :-)
Look at "base64_decode()"
<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?>