Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Why this mail does not work?

Featured Replies

When I test this contact form php script, I get email and only message. I have not got there email or subject. What is wrong?

<?php

$emailsubject = 'Message from Contactus';
$webmaster = 'tyla1@live.com';

$name = $_post['name'];
$subject = $_post['subject'];
$email = $_post['email'];
$message = $_POST['message'];

$body = <<<EOD
Email: $email 
Name: $name 
Subject: $subject 
Message: $message
EOD;

$headers = "From: $email\r\n";
$hearers .= "Content-type: text/html\r\n";
$success = mail($webmaster, $emailsubject, $body, $headers);
echo "<script language='JavaScript'>alert('Thank you');window.location= 'index.php';</script>";die;
?>

typo on headers variable.

 

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: Your Name <'.$webmaster.'>' . "\r\n";
$headers .= 'From: '.$name.' <'.$email.'>' . "\r\n";

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.