class SMTP_Mailer { private $smtp_host = 'smtp-relay.brevo.com'; private $smtp_port = 587; private $smtp_user = '7e862c002@smtp-brevo.com'; private $smtp_pass = 'Fp2RTgDA1OJCMzwP'; private $from_email = 'proyectos4@calltechsa.com'; private $from_name = 'Canal Ético'; public function enviar_correo($to, $subject, $message) { $headers = array( 'From' => $this->from_name . ' <' . $this->from_email . '>', 'Content-Type' => 'text/html; charset=UTF-8', ); // Usando la función wp_mail() para enviar el correo return wp_mail($to, $subject, $message, $headers); } } Miembros - Calltech S.A.

Calltech S.A.

en_US