J'ai trouvé cela mais je n'ai pas bien compris comment cela marche...
function Attach($filename, $disposition = "inline" )
{
if (is_array($filename))
{
$this->aAttach = $filename;
if (is_array($disposition))
$this->adispo = $disposition;
else
{
for($i=0; $i<count($filename); $i++)
$this->adispo[$i] = $disposition;
}
for($i=0; $i<count($filename); $i++)
$this->actype[$i] = $this->getMimeType($filename[$i]);
}
else
{
$this->aAttach[] = $filename;
$this->adispo[] = $disposition;
$this->actype[] = $this->getMimeType($filename);
}
}
avec comme utilisation :
// Attach a file (it can be an array or a string)
// ["file1", "file2"] or "file"
$m->Attach( "toto.gif" );
[jfdsdjhfuetppo]--Message édité par Roco le 21-04-2002 à 11:37:20--[/jfdsdjhfuetppo]