Jump to content

costamesakid

New Members
  • Posts

    2
  • Joined

  • Last visited

costamesakid's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. OK I will look into MIME format. This has to be done just when sending an email with an attachment? My script worked fine until I had to add the attcahment code. I thought it would be pretty straight forward but have obviously been struggling with it. Thanks
  2. I am having trouble learning how to a send an attachment using a PHP script. Any help is greatly appreciated. Below is my script followed by a snippet of my HTML: <?php $to = "jsmith@yahoo.com"; $subject = "Purchase Received!"; $email = $_REQUEST['email']; $mar_stat = $_REQUEST['mar_stat']; $client_name = $_REQUEST['client_name']; $spouse_name = $_REQUEST['spouse_name']; $client_dob_month = $_REQUEST['client_dob_month']; $client_dob_day = $_REQUEST['client_dob_day']; $client_dob_year = $_REQUEST['client_dob_year']; $spouse_dob_month = $_REQUEST['spouse_dob_month']; $spouse_dob_day = $_REQUEST['spouse_dob_day']; $spouse_dob_year = $_REQUEST['spouse_dob_year']; $client_income = $_REQUEST['client_income']; $spouse_income = $_REQUEST['spouse_income']; $address = $_REQUEST['address']; $city = $_REQUEST['city']; $state = $_REQUEST['state']; $zip = $_REQUEST['zip']; $email = $_REQUEST['email']; $area = $_REQUEST['area']; $prefix = $_REQUEST['prefix']; $phone = $_REQUEST['phone']; $contact_method = $_REQUEST['contact_method']; $client_ret_age = $_REQUEST['client_ret_age']; $spouse_ret_age = $_REQUEST['spouse_ret_age']; $desired_gross_inc = $_REQUEST['desired_gross_inc']; $apprx_ret_invest = $_REQUEST['apprx_ret_invest']; $apprx_nonret_invest = $_REQUEST['apprx_nonret_invest']; $pension = $_REQUEST['pension']; $pension_comments = $_REQUEST['pension_comments']; $life_expect = $_REQUEST['life_expect']; $spouse_life_expect = $_REQUEST['spouse_life_expect']; $life_expect_comments = $_REQUEST['life_expect_comments']; $work_ret = $_REQUEST['work_ret']; $spouse_work_ret = $_REQUEST['spouse_work_ret']; $work_ret_comments = $_REQUEST['work_ret_comments']; $inheritance = $_REQUEST['inheritance']; $inheritance_comments = $_REQUEST['inheritance_comments']; $headers = "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: $email"; $message = "<b>Purchase Received! Customer Infromation Form</b><br><br><b>Married?:</b> $mar_stat<br><b>Client Name:</b> $client_name<br><b>Spouse_Name:</b> $spouse_name<br><b>Client DOB:</b> $client_dob_month-$client_dob_day-$client_dob_day<br><b>Spouse DOB:</b> $spouse_dob_month-$spouse_dob_day-spouse_dob_day<br><b>Client Income:</b> $client_income<br><b>Spouse Income:</b> $spouse_income<br><br><b>Address:</b> $address<br><b>City:</b> $city<br><b>State:</b> $state<br><b>Zip:</b> $zip<br><b>Email:</b> $email<br><b>Phone:</b> $area-$prefix-$phone<br><b>Best Contact Method:</b> $contact_method<br><br><b>Desired Client Retirement Age:</b> $client_ret_age<br><b>Desired Spouse Retirement Age:</b> $spouse_ret_age<br><b>Desired Gross Income:</b> $desired_gross_inc<br><b>Approximate Retirement Investments:</b> $apprx_ret_invest<br><b>Approximate Non-Retirement Investments:</b> $apprx_nonret_invest<br><br><b>Pension:</b> $pension<br><b>Pension Comments:</b> $pension_comments<br><br><b>Client Life Expectancy:</b> $life_expect<br><b>Spouse Life Expectancy:</b> $spouse_life_expect<br><b>Life Expectancy Comments:</b> $life_expect_comments<br><br><b>Client Working in Retirement:</b> $work_ret<br><b>Spouse Working in Retirement:</b> $spouse_work_ret<br><b>Working in Retirement Comments:</b> $work_ret_comments<br><br><b>Inheritance Expected:</b> $inheritance<br><b>Inheritance Comments:</b> $inheritance_comments"; $sent = mail($to, $subject, $message, $headers); if($sent) header( "Location: http://www.sspla.com/thankyou_purchase.html" ); else header( "Location: http://www.sspla.com/sorry_purchase.html" ); ?> Here is the HTML snippet: <!-- ATTACH DOCUMENTATION --> <fieldset> <legend> <b>Attach Statement</b> </legend> <table border="0" cellpadding="2" cellspacing="3"> <tr> <td align="left" valign="top"> <input type="file" name='statement' maxlength="275" /> <span style="font-size: .95em;"><i>NOTE: Failure to Attach Your Statement May Result in a Delay Proccessing Your Purchase</i></span> </td> </tr> </table> </fieldset> THANKS!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.