cfgcjm Posted October 3, 2007 Share Posted October 3, 2007 I'm interested in creating a php based form that is capable of sending attachments. I really dont know what to do since an attachment can't really be saved to a variable (i'm guessing). This is the emailer code i've been using but i'm not sure what to add to do attachements. <? session_start(); $name = $_POST["name"]; $email = $_POST["email"]; $status = $_POST["radio"]; $today = date("d, M Y"); $recipient = "[email protected]"; $subject = "assignment mailer"; $forminfo ="From: $name\nEmail: $email\nForm Submitted: $today\n $status $sent = mail($recipient, $subject, $forminfo, "From: $email"); Link to comment https://forums.phpfreaks.com/topic/71617-email-form-with-attachments/ Share on other sites More sharing options...
haaglin Posted October 3, 2007 Share Posted October 3, 2007 A simple google search gave me this link: http://www.finalwebsites.com/snippets.php?id=36 Link to comment https://forums.phpfreaks.com/topic/71617-email-form-with-attachments/#findComment-360668 Share on other sites More sharing options...
cfgcjm Posted October 3, 2007 Author Share Posted October 3, 2007 that looks extremely complex to send a file. There has to be an easier way Link to comment https://forums.phpfreaks.com/topic/71617-email-form-with-attachments/#findComment-360768 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.