Actualmente uso BiffWriter y este es el metodo que genera el excel para descargarlo.
Código
function xlsParse($fname = '') { foreach($this->maxcolwidth as $key => $value) { $this->SetcolWidth($key, $key, $value); } if ($this->fonts = 0) { $this->xlsSetFont('Arial', 10, $font_format = FONT_NORMAL); } $this->setCodePage(); $this->EOF(); $this->SetDefFormat(); $this->assemblePageBreaks(); $this->setPane(); $this->setWindow(); if ($fstorage) { } else { } for ($x = 0 ; $x < $len1; $x++) { for ($y = 0; $y < $len2; $y++) { if ($code === $this->stream[$y]) { if ($fstorage) { } else { print $this->stream[$y + 1]; } } } } } if ($fstorage) { } return($fname); }
Para descargarlo yo lo uso asi
Código
$xsl->xslParse();
Pero mi idea es hacerlo asi
Código
$mail->AddAttachment($xls->xlsParse());
Para enviarlo adjunto sin que se descargue, a traves de php mailer, alguien me puede orientar por favor?
Gracias de antemano, saludos.