Contents
<html> <head> <title>Test email</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7"> </head> <body> <?php $to = 'ebalaskas@ebalaskas.gr'; $subject = 'the email subject'; $message = 'the email message : hello'; $headers = 'From: ebalaskas@ebalaskas.gr' . "\r\n" . 'Reply-To: ebalaskas@ebalaskas.gr' . "\r\n" . 'CC: : ebalaskas@ebalaskas.gr' . "\r\n" . 'BCC: : ebalaskas@ebalaskas.gr' . "\r\n" ; echo "Mail : " . mail($to, $subject, $message, $headers); ?> </body> </html>
Contents
<html> <head> <title>Test email</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7"> </head> <body> <?php $to = 'ebalaskas@ebalaskas.gr'; $subject = 'the email subject'; $message = 'the email message : hello'; $headers = 'From: ebalaskas@ebalaskas.gr' . "\r\n" . 'Reply-To: ebalaskas@ebalaskas.gr' . "\r\n" . 'CC: : ebalaskas@ebalaskas.gr' . "\r\n" . 'BCC: : ebalaskas@ebalaskas.gr' . "\r\n" ; echo "Mail : " . mail($to, $subject, $message, $headers); ?> </body> </html>
Contents
<html> <head> <title>Test email</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7"> </head> <body> <?php $to = 'ebalaskas@ebalaskas.gr'; $subject = 'the email subject'; $message = 'the email message : hello'; $headers = 'From: ebalaskas@ebalaskas.gr' . "\r\n" . 'Reply-To: ebalaskas@ebalaskas.gr' . "\r\n" . 'CC: : ebalaskas@ebalaskas.gr' . "\r\n" . 'BCC: : ebalaskas@ebalaskas.gr' . "\r\n" ; echo "Mail : " . mail($to, $subject, $message, $headers); ?> </body> </html>