我最近购买了一个模板,下面的php代码处理了联系表格。当用户单击“发送”按钮时,我试图将消息发送到我的电子邮件。但是,我在将电子邮件链接到表单时遇到问题。在哪里可以找到Outlook电子邮件的SMTP信息?
<?php
define('CONTACT_FORM_NAME','@outook.com');
define('CONTACT_FORM_EMAIL','@outook.com');
define('CONTACT_FORM_SMTP_HOST','');
define('CONTACT_FORM_SMTP_USER','');
define('CONTACT_FORM_SMTP_PORT','');
define('CONTACT_FORM_SMTP_SECURE','');
define('CONTACT_FORM_SMTP_PASSWORD','');
define('CONTACT_FORM_SUBJECT','Auto Spa - Car Wash Auto Detail Template: Contact');
define('CONTACT_FORM_MSG_INVALID_DATA_NAME','Please enter your name.');
define('CONTACT_FORM_MSG_INVALID_DATA_EMAIL','Please enter valid e-mail.');
define('CONTACT_FORM_MSG_INVALID_DATA_MESSAGE','Please enter your message.');
define('CONTACT_FORM_MSG_SEND_OK','Thank you for contacting us.');
define('CONTACT_FORM_MSG_SEND_ERROR','Sorry, we can\'t send this message.');