PhpDig.net

What is PhpDig?
PhpDig is a PHP MySQL based
Web Spider & Search Engine.




imap_binary

Name

imap_binary — This function converts a an 8bit string to a base64 string.

Synopsis

string imap_binary(text);
string text: Text to be converted

Returns

A base64 string; FALSE on error

Description

Convert an 8bit string to a base64 string. For information on Base64 encoding refer to RFC2045(Section 6.8)

Version

From versions 3.0.2 and 4.0

See also

See also: imap_base64

Example

Example 595. Attach and send a file

<?php
$imap = imap_open("{localhost}INBOX","graeme","inferno");

// open a file to attach
$filename = "testsound.wav";
$fd = fopen ($filename, "r");
$contents = fread ($fd, filesize ($filename));
fclose ($fd);

// create the relevant mesg information
$envelope["from"]="testuser@test.com";
$envelope["to"]="graeme@php-er.com";

// set attachment properties
$part1["type"]=TYPEMULTIPART;
$part1["subtype"]="mixed";

// attache the file
$part2["type"]=TYPEAPPLICATION;
$part2["encoding"]=ENCBINARY;
$part2["subtype"]="octet-stream";
$part2["description"]=$filename;
$part2["contents.data"]=$contents;

$part3["type"]=TYPETEXT;
$part3["subtype"]="plain";
$part3["description"]="description3";
$part3["contents.data"]="contents.data3\n\n\n\t";

$body[1]=$part1;
$body[2]=$part2;
$body[3]=$part3;

// compose the message
imap_mail_compose($envelope,$body);

imap_close($imap);

?>



PHP Functions Essential Reference. Copyright © 2002 by New Riders Publishing (Authors: Zak Greant, Graeme Merrall, Torben Wilson, Brett Michlitsch). This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). The authors of this book have elected not to choose any options under the OPL. This online book was obtained from http://www.fooassociates.com/phpfer/ and is designed to provide information about the PHP programming language, focusing on PHP version 4.0.4 for the most part. The information is provided on an as-is basis, and no warranty or fitness is implied. All persons and entities shall have neither liability nor responsibility to any person or entity with respect to any loss or damage arising from the information contained in this book.

Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2005, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.