Page 4 of 4 FirstFirst ... 234
Results 31 to 38 of 38

Thread: Form help

  1. #31
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Quote Originally Posted by vacatia View Post
    Do you think I can just add another mail function right underneath the previous one?
    yes you can, but if you are sending the same information, you could probably do a loop through your initial mailer or you can copy the additional users

    Former
    PHP Code:
    $people = array('email','email','email');

    foreach(
    $people as $to)
    {
         
    mail($to$subject$body$headers);

    Latter
    PHP Code:
    $to 'email';
    $cc = array('email','email','email'); can be just a single string too

    // if $cc is an array
    $headers "CC: ".implode(','$cc);

    if 
    $cc is a string
    $headers 
    "CC: "$cc;

    mail($to$subject$body$headers); 
    in either case, be sure to validate the information coming from the user... aka DONT TRUST IT!

  2. #32
    Join Date
    Oct 2006
    Posts
    41
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Hi there,

    Can you use any html in these automatic email responses? The one I'm using now is just text but I'd like to have an image in there too if possible.

  3. #33
    Join Date
    Oct 2006
    Posts
    41
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Anybody?

  4. #34
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    If you pass the correct MIME type in the headers, you can. Tutorial.

  5. #35
    Join Date
    Apr 2008
    Posts
    38
    Thanks
    9
    Thanked 1 Time in 1 Post

    Default

    Make the action attribute of the form 'submit.php'. Then put this code in submit.php:
    PHP Code:
    <?php
    $emailname 
    'email'//Set the name attribute of the address form here
    $addressname 'address'//Set the name attribute of the address form here
    $RECIPIENT 'blahblahblah@blahblah.com'//Set your email address
    $SUBJECT 'Form Submission'//Set the subject of the email sent to you here
    //No need to edit below this line
    $email $_REQUEST[$emailname];
    $address $_REQUEST[$addressname];
    $MESSAGE $email '\n' $address;
    mail($RECIPIENT$SUBJECT$MESSAGE);
    ?>

  6. #36
    Join Date
    May 2008
    Posts
    10
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Umm, you dont really need a code, you can just use Jotform, no download, super easy and free. Also you can make a thank you page there! Also paypal, radio buttons etc. etc. www.jotform.com

  7. #37
    Join Date
    Aug 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi !
    I am the first time user of PHP Scripts...need some serious help from you learned men out here.....following is a mail script that I have with me for a flash form..Please guide if it will work....which are the variable I need to change/I can change.....

    <?php
    /***************************************************\
    * PHP 4.1.0+ version of email script. For more
    * information on the mail() function for PHP, see
    * http://www.php.net/manual/en/function.mail.php
    \***************************************************/


    // First, set up some variables to serve you in
    // getting an email. This includes the email this is
    // sent to (yours) and what the subject of this email
    // should be. It's a good idea to choose your own
    // subject instead of allowing the user to. This will
    // help prevent spam filters from snatching this email
    // out from under your nose when something unusual is put.

    $sendTo = $_POST["adminEmail"];
    $subject = $_POST["emailSubject"];

    // variables are sent to this PHP page through
    // the POST method. $_POST is a global associative array
    // of variables passed through this method. From that, we
    // can get the values sent to this page from Flash and
    // assign them to appropriate variables which can be used
    // in the PHP mail() function.


    // header information not including sendTo and Subject
    // these all go in one variable. First, include From:
    $headers = "From: " . $_POST["name"] . "<" . $_POST["email"] .">\r\n";
    // next include a replyto
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    // often email servers won't allow emails to be sent to
    // domains other than their own. The return path here will
    // often lift that restriction so, for instance, you could send
    // email to a hotmail account. (hosting provider settings may vary)
    // technically bounced email is supposed to go to the return-path email
    $headers .= "Return-path: " . $_POST["email"];

    // now we can add the content of the message to a body variable
    $message = "FROM: " . $_POST["name"] . "\r\n";
    $message .= "EMAIL: " . $_POST["email"] . "\r\n";
    $message .= "MESSAGE: " . $_POST["messageText"];
    $message .= "\n\n";
    $message .= "SELECTED IMAGES\n".$_POST["selectedImages"];
    $trimmedList = substr($_POST["selectedFiles"], 0, strlen($_POST["selectedFiles"])-1);
    $message .= "\n\nSELECTED FILES LIST\n".$trimmedList;
    // once the variables have been defined, they can be included
    // in the mail function call which will send you an email
    mail($sendTo, $subject, $message, $headers);

    ?>

  8. #38
    Join Date
    Oct 2006
    Posts
    183
    Thanks
    0
    Thanked 11 Times in 11 Posts

    Default

    Making a new topic will get more help than adding your own question to an existing topic

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •