I’m having difficulty loading an image straight from a form to an email. I don’t want to save it anywhere, only resize it to a fairly easily email size. Then I’d like to simply have it pulled into the email with the rest of the form. Any way to do that? I have read in my manual as well as googled it but no help. Thanks.
I would even consider using some javascript if necessary. I just don’t want to handle it with a database.
Here is the portion of the html/php form:
[php]
Image:
And here is associated action on the php upload/email form–which doesn’t work:
[php] ‘picture’ => !empty($_POST[“picture”]) ? $_POST[“picture”]
$msg .= "picture: " . $form[‘picture’];
//and of course the email part, which seems irrelevant to post here. Thanks.
[/php]