-
Notifications
You must be signed in to change notification settings - Fork 4
/
mail.php
31 lines (28 loc) · 813 Bytes
/
mail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
header('Content-Type: text/html; charset=utf-8');
// $body = "Email enviado pelo PHP\nEmail criado na aula da iparos a distância";
$body = '
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<h1>Título</h1><br><strong>Texto em negrito</strong>
</body>
</html>
';
$email_headers = "Content-type: text/html;charset=utf-8;";
$email_headers .= "\r\nFrom:[email protected]";
$email_headers .= "\r\nBcc:[email protected]";
mail('[email protected]', 'Email enviado pelo PHP', $body, $email_headers);
?>
<!DOCTYPE html>
<html>
<head>
<title>Envio de emails pelo PHP</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
</body>
</html>