PHP

NAVIGATION
CATEGORIES
REFERRENCE
LINKS
  • Strange situation when saving a file

    1 answers - 5055 bytes - related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

    K, 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 Buffer functionality
    //
    function sendcorreo($from,$doc,$depto,$cuerpo){
    $simple_mailer = new EVM_Mailer(); // create new EVM_Mailer object
    $simple_mailer->set_sender("Departamento de L
    R8","email (AT) account (DOT) com"); // 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 (AT) account (DOT) com"); // add a
    recipient to the email To: list
    $simple_mailer->add_CC($depto,$from);
    $simple_mailer->add_BCC("CC Name","email (AT) account (DOT) com"); // 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 (AT) account (DOT) com"); // 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 B and output it contents to the browser
    }
    ?>
    Message
    From: Stut [mailto:stuttle (AT) gmail (DOT) com]
    Sent: M, 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 K. The only workaround I'm doing is adding a .doc file extension
    when saving the file, in order to open the file in Word.
    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.
  • No.1 | | 2176 bytes | |

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

    ob_start(); // Start Buffer functionality
    --
    //

    function sendcorreo($from,$doc,$depto,$cuerpo){
    $simple_mailer = new EVM_Mailer(); // create new EVM_Mailer object
    $simple_mailer->set_sender("Departamento de L
    R8","email (AT) account (DOT) com"); // 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 (AT) account (DOT) com"); // add a
    recipient to the email To: list
    $simple_mailer->add_CC($depto,$from);
    $simple_mailer->add_BCC("CC Name","email (AT) account (DOT) com"); // 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 (AT) account (DOT) com"); // 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 B and output it contents to the browser
    }
    ?>

    I'm not at all familiar with the class you're using to send the email,
    but what is the third parameter to add_attachment? You're setting it to
    html, is that right? What email client are you checking the email with?
    Does it allow you to view the raw email? Does it look right? If all else
    fails I think your best bet is to contact the author of the class.
    -Stut

Re: Strange situation when saving a file


max 4000 letters.
Your nickname that display:
In order to stop the spam: 2 + 2 =
QUESTION ON "PHP"

EMSDN.COM