<?php
/**
 * Mail Configuration
 * Configure SMTP settings for sending emails
 */

return [
    // Mail driver: 'smtp', 'sendmail', 'mail'
    'driver' => 'smtp',
    
    // SMTP Configuration
    'smtp' => [
        'host' => 'smtp.gmail.com', // Change to your SMTP host
        'port' => 587,
        'encryption' => 'tls', // 'tls' or 'ssl'
        'username' => 'your-email@gmail.com', // Your email
        'password' => 'your-app-password', // Your app password
        'from' => [
            'address' => 'noreply@rozskin.com',
            'name' => 'Roz Skin'
        ]
    ],
    
    // Sendmail Configuration (if using sendmail)
    'sendmail' => [
        'path' => '/usr/sbin/sendmail -bs'
    ],
    
    // Default mail settings
    'charset' => 'UTF-8',
    'timeout' => 30
];
