在php中创建链接,点击后自动使用OUTLOOK发送至邮箱caf@accurantbio.com
时间: 2024-03-16 10:41:37 浏览: 146
用自动化方式调用OUTLOOK发送电子邮件.zip
您可以使用PHP中的mail函数来发送电子邮件。以下是一个简单的示例代码,可以将邮件发送到指定的电子邮件地址:
```php
$to_email = "caf@accurantbio.com";
$subject = "Test email";
$body = "This is a test email sent from PHP.";
$headers = "From: your-email@example.com\r\n";
$headers .= "Reply-To: your-email@example.com\r\n";
$headers .= "CC: another-email@example.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
mail($to_email, $subject, $body, $headers);
```
请将 `$to_email` 替换为您要发送的电子邮件地址,并将 `$body` 替换为您要发送的电子邮件正文。请注意,您需要在服务器上配置SMTP设置,以便发送电子邮件。
阅读全文