php如何发邮箱
时间: 2023-08-15 13:04:18 浏览: 73
要发送电子邮件,PHP提供了内置的邮件发送功能。您需要使用PHP的SMTP类或邮件函数来发送电子邮件。以下是使用PHP内置邮件函数`mail()`发送电子邮件的示例代码:
```php
$to = 'recipient@example.com';
$subject = 'Test email';
$message = 'This is a test email sent from PHP';
$headers = 'From: sender@example.com' . "\r\n" .
'Reply-To: sender@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
```
在上面的代码中,您需要将“recipient@example.com”替换为收件人的电子邮件地址,将“sender@example.com”替换为发件人的电子邮件地址,将“Test email”替换为邮件主题,将“This is a test email sent from PHP”替换为邮件正文。
请注意,某些SMTP服务器可能需要使用SMTP身份验证才能发送电子邮件。在这种情况下,您需要使用PHP的SMTP类来设置SMTP身份验证。
阅读全文