OK, here is the code behind my problem:

include("evm_mailer.php"); //The class I'm using for sending e-mails, from
www.phpclasses.org

ob_start(); // Start Output Buffer functionality


//**************************************************************************
****************
function sendcorreo($from,$doc,$depto,$cuerpo){
        $simple_mailer = new EVM_Mailer(); // create new EVM_Mailer object
        $simple_mailer->set_sender("Departamento de Logística On-line
R8","[EMAIL PROTECTED]"); // set sender name and email address
        $simple_mailer->set_subject("E-mail subject"); // set the subject line 
of
the email
        $simple_mailer->set_message_type("html"); // text or html mime-type
        $simple_mailer->set_message($cuerpo); // set the message body of the 
email
message
        $simple_mailer->add_recipient("Recipient","[EMAIL PROTECTED]"); // add a
recipient to the email To: list
        $simple_mailer->add_CC($depto,$from);
        $simple_mailer->add_BCC("CC Name","[EMAIL PROTECTED]"); // add a 
recipient
to the email BCC: list
        $simple_mailer->add_attachment($doc,"/path/to/my/file","html"); // add 
the
file as an attachment
        if($depto=="CENTRAL"){
                $simple_mailer->add_CC("CC2 Name","[EMAIL PROTECTED]"); // add 
a recipient
to the email CC: list
        }
        $simple_mailer->send(); // send the email
}

//**************************************************************************
******************


<?php
$salida=ob_get_contents(); //I store the content to a variable string

if(($numrmagsmseq != "FALSE") or ($numrmatdmaseq != "FALSE")){
        $doc2=$rmat.".doc"; // Create file name
        $file=fopen($doc2,"w");
        fputs($file,$salida);
        fclose($file); //Store file
        sendcorreo($userdata[3],$doc2,$userdata[1],$salida); //Calle the 
function
to send e-mail
}
ob_end_flush();//Empty the OB and output it contents to the browser
}
?>

-----Original Message-----
From: Stut [mailto:[EMAIL PROTECTED]
Sent: Miércoles, 30 de Agosto de 2006 03:16 a.m.
To: Miguel Guirao
Cc: PHP List
Subject: Re: [PHP] Strange situation when saving a file


Miguel Guirao wrote:
> I'm using ob_start() in order to save the content of a web page into a
> variable string and then save it into a file in the file system. Every
thing
> is done OK. The only workaround I'm doing is adding a .doc file extension
> when saving the file, in order to open the file in Word.
>
> Once the file has been created and saved as I doc file (not a doc
format!),
> I e-mail it!
>
> When the client gets the e-mail, he/she should open the file either by
> saving the file to the local system or openning the file directly from the
> e-mail attachment. Either way, I got a blank page in Word. If I open the
> document directly from the web server, without having it sent by e-mail,
it
> opens correctly in Word. The only problem is when the file is been
> emailed!!!
>
>
> What could be going wrong?? Any ideas??
>

My crystal ball tells me that there's something wrong with your code.
Unfortunately, due to the lead shield that surrounds all PHP code I
cannot see it from here. I suggest your next step would be to remove
said shield by emailing the relevant parts to the list. Then we may be
able to bring our collective skills together to assist in solving your
problem.

-Stut


Este mensaje es exclusivamente para el uso de la persona o entidad a quien esta 
dirigido; contiene informacion estrictamente confidencial y legalmente 
protegida, cuya divulgacion es sancionada por la ley. Si el lector de este 
mensaje no es a quien esta dirigido, ni se trata del empleado o agente 
responsable de esta informacion, se le notifica por medio del presente, que su 
reproduccion y distribucion, esta estrictamente prohibida. Si Usted recibio 
este comunicado por error, favor de notificarlo inmediatamente al remitente y 
destruir el mensaje. Todas las opiniones contenidas en este mail son propias 
del autor del mensaje y no necesariamente coinciden con las de Radiomovil 
Dipsa, S.A. de C.V. o alguna de sus empresas controladas, controladoras, 
afiliadas y subsidiarias. Este mensaje intencionalmente no contiene acentos.

This message is for the sole use of the person or entity to whom it is being 
sent.  Therefore, it contains strictly confidential and legally protected 
material whose disclosure is subject to penalty by law.  If the person reading 
this message is not the one to whom it is being sent and/or is not an employee 
or the responsible agent for this information, this person is herein notified 
that any unauthorized dissemination, distribution or copying of the materials 
included in this facsimile is strictly prohibited.  If you received this 
document by mistake please notify  immediately to the subscriber and destroy 
the message. Any opinions contained in this e-mail are those of the author of 
the message and do not necessarily coincide with those of Radiomovil Dipsa, 
S.A. de C.V. or any of its control, controlled, affiliates and subsidiaries 
companies. No part of this message or attachments may be used or reproduced in 
any manner whatsoever.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to