#!/bin/bash

# Path to PHP executable
PHP_BIN="/usr/bin/php"

# Path to the PHP script
PHP_SCRIPT="/home/wiselie/public_html/send_email.php"

# Path to the log file
LOG_FILE="/home/wiselie/public_html/send_email_debug.log"

# Execute the PHP script and log output and errors
$PHP_BIN $PHP_SCRIPT > $LOG_FILE 2>&1
