在我的应用程序中,我们使用 MS 交换服务器发送电子邮件。但是我们没有使用 SMTP 。我们必须在不使用 SMTP 的情况下发送邮件。
早些时候,我使用带有 SMTP 的 Gail 服务器发送邮件。但我没有找到任何不使用 SMTP 来使用交换服务器发送邮件的解决方案。
请为此建议我一个好的解决方案
编辑:PHP代码
<?php
// Set basic message parameters
$from = 'noreply@company.com';
$to = 'customer@example.com';
$subject = 'Test Message';
$message = 'Hello';
// Set additional headers for HTML email
$headers = 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
$headers .= 'X-Mailer: PHP/' . phpversion() . "\n";
$headers .= 'From: ' . $from;
// Send mail
if (mail($to, $subject, $message, $headers)) {
echo 'Message sent';
} else {
echo 'Message sending failed';
}
?>
是否可以在不使用 SMTP 端口和主机的情况下发送邮件?