Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How to make send and recieve a formatted Table Form via email ?

  • This topic is empty.
Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #37466
    stjepo
    Member

    I need to send a formatted table once the send has completed it and recieve via mail in the same format.

    Please help.

    Thanks

    #100505
    stjepo
    Member

    I need to send a formatted table once the sender has completed it, and recieve it via mail with the same format.

    #100574
    stjepo
    Member

    Thank you for your answer. Up to now I have managed to make the form and the PHP script to be sent and print formated in the receiver email.

    It seems to work but when I point to this page in the server, it sends an empty form first, after I fill it send the correct one.

    What is wrong (maybe all is because I am new to this). I have edited the tables just to show the head and the first line but I can’t sent it to you using the WriteComment because keeps showing a small red lable ValidateLenght.

    How can I send you the code?

    Best regards from Spain

    #100575
    stjepo
    Member

    Part 1:





    #100576
    stjepo
    Member

    Part 2:

    Rellenar sus pedidos y el stock que todavía hay

    VOLVER A PÁGINA SERVICIOS

    FECHA STOCK: DÍA: MES: AÑO: FECHA PEDIDO: DÍA: MES: AÑO:

    #100577
    stjepo
    Member

    No success, I don’t know how to send you the code. Advise me.

    Regards

    #100592
    stjepo
    Member













    #100593
    stjepo
    Member







    Rellenar sus pedidos y el stock que todavía hay


    VOLVER A PÁGINA SERVICIOS

























    FECHA STOCK: DÍA: MES: AÑO: FECHA PEDIDO: DÍA: MES: AÑO:


    DESAYUNOS






















    Formato
    Artículo
    Observaciones
    Uds. Stock
    Uds. Solicit.
    Uds. Pedidas
    ACEITE DE OLIVA





    $to = '[email protected]';
    $subject = 'PEDIDOS';
    $msg = "

    #100594
    stjepo
    Member
    PEDIDOS DESDE LA RESIDENCIA
























    FECHA STOCK: DÍA: " . strip_tags($_POST) . " MES: " . strip_tags($_POST) . " AÑO: " . strip_tags($_POST) . " FECHA PEDIDO: DÍA: " . strip_tags($_POST) . " MES: " . strip_tags($_POST) . " AÑO: " . strip_tags($_POST) . "

    DESAYUNOS























    Formato
    Artículo
    Observaciones
    Uds. Stock
    Uds. Solicit.
    Uds. Pedidas
    " . strip_tags($_POST) . "
    ACEITE DE OLIVA
    " . strip_tags($_POST) . "
    " . strip_tags($_POST) . "
    " . strip_tags($_POST) . "
    " . strip_tags($_POST) . "





    ";

    $headers = 'MIME-Version: 1.0' . "rn";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "rn";

    mail($to, $subject, $msg, $headers);

    echo "

    Gracias por rellenar su pedido. Su información se ha enviado correctamente.

    ";
    ?>




















    #100595
    stjepo
    Member

    Ok, thanks for the help.

    Stjepo

    #100616
    stjepo
    Member

    Thanks Schmotty

Viewing 11 posts - 1 through 11 (of 11 total)
  • The forum ‘Back End’ is closed to new topics and replies.