У меня есть рабочий php-мейлер, который я люблю, но мне не хватает только одного: файл вложения.
Это моя форма:
<?php get_header(); ?>
<form action="http://www.guitara.co.il/wp-content/themes/mguitara/mailEngineThing.php" method="post" id="advfree_new" class="validate" >
<div class="field">
<label>שם ומשפחה</label>
<input type="text" name="name" id="name" placeholder="ישראל ישראלי" class="required min-length_5 namespace" title="אנא בדוק שהזנת נכון שם ושם משפחה."/>
</div>
<div class="field">
<label>דואר אלקטרוני</label>
<input type="email" name="email" id="email" placeholder="israel@israeli.com" class="required email" title="אנא הזן כתובת דואר אלקטרוני תקנית."/>
</div>
<div class="field">
<label>פלאפון</label>
<input type="tel" name="phone" id=" phone" placeholder="050-0000000" class="required min-length_10 max-length_11" title="אנא הזן מספר פלאפון (בעל 10 ספרות)."/>
</div>
<div class="field">
<label>ערים בהם השיעורים מועברים</label>
<input type="text" name="citys" id="citys" placeholder="חיפה, תל-אביב" class="required" title="אנא הזן מיקום השיעורים."/>
</div>
<div class="field">
<label>מחיר לשיעור</label>
<input type="text" name="price" id="price" placeholder="100" class="required numeric min-length_2 max-length_4" title="המחיר צריך להכיל שתיים או שלוש ספרות." />
</div>
<div class="field">
<label>תקציר מידע</label>
<textarea rows="8" cols="23" name="excerpt" id="excerpt" placeholder="שנות נסיון, סגנון וכדומה..." class="required min-length_60 max-length_110" title="התקציר צריך להכיל בין 60 ל-110 מילים.">
</textarea>
</div>
<div class="field">
<label>תוכן העמוד</label>
<textarea rows="18" cols="50" name="inputcontent" id="inputcontent" placeholder="על אופי השיעורים, מיקום השיעורים, עוד עליכם וכדומה..." class="required min-length_300 max-length_1500" title="התוכן צריך להכיל לפחות 300 אותיות.">
</textarea><br/>
<span class="movieMessege">
*אפשר לצרף גם כתובת סרטון YouTube לתיבת התוכן והסרט יופיע בתוך העמוד.
</span>
</div>
<br/>
<div class="field">
<label>תמונה אישית</label>
<input type="file" id="fileupload" accept="image/jpeg,image/jpg,image/bmp,image/png,/image/gif" class="required" title="אנא הזן תמונה (תמונתך ולא פלייר או כדומה)."/>
</div>
<button name="send" class="btn" value="בחר קובץ">פרסם!</button><br/><br/><br/>
</form>
<div id="clear"></div>
<?php get_footer(); ?>
А это мой php-мейлер:
<?php
$SendFrom = "bentalgad@gmail.com";
$SendTo = "bentalgad@gmail.com";
$SubjectLine = "מורה גיטרה חדש";
$ThanksURL = "http://www.guitara.co.il/%D7%94%D7%98%D7%95%D7%A4%D7%A1-%D7%A0%D7%A9%D7%9C%D7%97-%D7%91%D7%94%D7%A6%D7%9C%D7%97%D7%94/";
// Build Message Body from Web Form Input
foreach ($_POST as $Field=>$Value)
$MsgBody .= "$Field: $Value\n";
$MsgBody = htmlspecialchars($MsgBody, ENT_NOQUOTES); //make safe
// Send E-Mail and Direct Browser to Confirmation Page
mail($SendTo, $SubjectLine, $MsgBody, "From: $SendFrom");
header("Location: $ThanksURL");
?>
Я был бы очень рад, если бы кто-нибудь помог мне добавить код, необходимый для того, чтобы php-почтовик прикрепил файл к тому письму, которое он отправляет.
ThankYouAnyWay !!!