/*
Theme Name: TravelWP Child
Theme URI: http://travelWP.physcode.com/
Author: Physcode
Author URI: http://physcode.com/
Description: Description
Version: 1.0.1
Template:  travelwp
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travelWP
Tags: two-columns, left-sidebar, right-sidebar, editor-style, rtl-language-support, sticky-post, theme-options, translation-ready, translation-ready

 */

add_action('phpmailer_init', function($phpmailer) {
    $phpmailer->isSMTP();                                 // Use SMTP protocol
    $phpmailer->Host       = 'mail.your-server.de';            // Replace with your SMTP server
    $phpmailer->SMTPAuth   = true;                        // Enable SMTP authentication
    $phpmailer->Port       = 465;                         // Common ports: 587 (TLS), 465 (SSL)
    $phpmailer->Username   = 'info@world-individual.com';      // Your SMTP username
    $phpmailer->Password   = 'd62sJt49Imk94a6p';  // Use an app password if possible
    $phpmailer->SMTPSecure = 'ssl';                       // Can be 'tls' or 'ssl' based on your setup
    $phpmailer->From       = 'info@world-individual.com';      // Sender email address
    $phpmailer->FromName   = 'Costarica Individual';      // Sender name
});  