Benutzer-Werkzeuge

Webseiten-Werkzeuge


programmieren:php:programme:send_from_mail

Formular abfragen und per Mail senden

Dieses soll nur eine Beispiel sein und muss den eigene Ansprüchen nach angepasst werden.
Stellt ein Eingabeformluar zur Verfügung und versendet die eingegeben Daten per Mail.

download.php
<?php
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Origin: '.(isset($_SERVER['HTTP_ORIGIN'])?$_SERVER['HTTP_ORIGIN']:'*'));
header('Access-Control-Allow-Headers: *');
 
define('_EMAIL_TO', 'Info@test.de');
define('_EMAIL_FROM', 'no-reply@test.de');
define('_EMAIL_SUBJECT', 'Kontakt Formular');
 
$fields = array(
	array('name' => 'name', 'valid' => array('require'), 'title' => 'Name'),
	array('name' => 'email', 'valid' => array('require'), 'title' => 'Email'),
	array('name' => 'query-type', 'valid' => array('require'), 'title' => 'Grund'),
	array('name' => 'message', 'title' => 'Nachricht', 'valid' => array('require')),
);
 
$info = pathinfo($_SERVER['REQUEST_URI']);
$path = '//'.$_SERVER['HTTP_HOST'].$info['dirname'].'/';
 
if (!empty($_POST)){
	$error_fields = array();
	$email_content = array();
	foreach ($fields AS $field){
		$value = isset($_POST[$field['name']])?$_POST[$field['name']]:'';
		$title = empty($field['title'])?$field['name']:$field['title'];
		if (is_array($value)){
			$value = implode('/ ', $value);
		}
		$email_content[] = $title.': '.$value;
		$is_valid = true;
		$err_message = '';
		if (!empty($field['valid'])){
			foreach ($field['valid'] AS $valid) {
				switch ($valid) {
					case 'require':
						$is_valid = $is_valid && strlen($value) > 0;
						$err_message = 'Eingabe erforderlich';
						break;
					case 'email':
						$is_valid = $is_valid && preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/i", $value);
						$err_message = 'Eingabe erforderlich';
						break;
					default:				
						break;
				}
			}
		}
		if (!$is_valid){
			if (!empty($field['err_message'])){
				$err_message = $field['err_message'];
			}
			$error_fields[] = array('name' => $field['name'], 'message' => $err_message);
		}
	}
 
	if (empty($error_fields)){
		$headers  = 'From: Info@test.de' . "\r\n". 'MIME-Version: 1.0' . "\r\n";
		$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
		// Send email
		mail (_EMAIL_TO, _EMAIL_SUBJECT, implode('<hr>', $email_content), $headers);	
		echo (json_encode(array('code' => 'success')));
	}else{
		echo json_encode(array('code' => 'failed', 'fields' => $error_fields));
	}
	die();
}
 
?>
<div class="wrap-embed-contact-form">
	<form class="embed-contact-form">
		<div class="form-heading">Hilfe / Feedback</div>
		<div class="form-sub-heading"><font color="#d51d1d"><b>Hotline: +49 (0)190 / 666 666</font></b><br>
		Hotline Montag-Freitag von 8-17 Uhr<br> 
        Helfe unsere Seite besser zu machen!</div>
		<hr>
		<div class="form-message hide">
			Deine Nachricht wurde erfolgreich versendet!
		</div>
		<div class="form-content">
			<div class="group">
				<label for="name" class="empty"></label>
				<div><input id="name" name="name" placeholder="Name" class="form-control"></div>
			</div>
			<div class="group">
				<label for="email" class="empty"></label>
				<div><input type="email" name="email" placeholder="Email" class="form-control"></div>
			</div>
			<div class="group">
				<label for="query-type">Grund</label>
				<div>
					<select id="query-type" name="query-type" class="form-control">
						<option value="allgemeine Frage">allgem. Frage</option>
						<option value="Produkt Info">Produkt Information</option>
						<option value="technische Problem">technische Probleme</option>
						<option value="anderes">anderes</option>
					</select>
				</div>
			</div>
			<div class="group">
				<label for="message" class="empty"></label>
				<div><textarea id="message" name="message" placeholder="Nachricht" class="form-control" rows="5"></textarea></div>
			</div>
			<div class="group">
				<label class="empty"></label>
				<div><button class="headbutton" style=height:40px;" type="submit">Sende Nachricht</button></div>
			</div>
		</div>
		<a class="btn-show-contact" href="#contact"><img src="<?php echo $path; ?>/bilder/btn_contact.png"></a>
	</form>
</div>
Diese Website verwendet nur für den Betrieb notwendige Cookies. Durch die Nutzung der Website stimmen Sie dem Speichern von Cookies auf Ihrem Computer sowie den Datenschutzbestimmungen zu. Wenn Sie nicht einverstanden sind, verlassen Sie die Website. Weitere Information
programmieren:php:programme (241 views) · Zuletzt geändert: 04/10/2020 15:50 von conny

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki