Jump to content

Email form with attachments


cfgcjm

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.