本文整理汇总了PHP中Agent::sendMessage方法的典型用法代码示例。如果您正苦于以下问题:PHP Agent::sendMessage方法的具体用法?PHP Agent::sendMessage怎么用?PHP Agent::sendMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Agent
的用法示例。
在下文中一共展示了Agent::sendMessage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: die
global $agent_mail_sent_success;
$agent_mail_sent_success = null;
// No session started yet
if (!isset($_SESSION)) {
session_start();
$session_id = session_id();
Registry::set('session_id', $session_id);
}
// Handle Agent contact form
if (isset($_POST['form_action'])) {
// Very simple anti-spam bot check. City is not a visible field.
if (!empty($_POST['city'])) {
die('Spam check failed.');
}
$agent = new Agent($_POST['agent_id']);
$agent_mail_sent_success = $agent->sendMessage($_POST['name'], $_POST['email'], $_POST['phone'], $_POST['message']);
}
global $sidebar_name;
$sidebar_name = 'property_details';
?>
<?php
get_header();
?>
<?php
$sidebar_position_mobile = estetico_get_setting('sidebar_position_mobile');
?>
<?php
if ($sidebar_position_mobile == 'before') {