Controles
Trades
Câmeras
Clientes
Chips 4G
KB
Projetos
Senhas
Servidores
Tarefas

N8N – WEBHOOKS

24/04/2025
image_pdfimage_print

Enviar Email

 

<?php

$url = “https://n8n.lstimelapses.com.br/webhook/64388cfd-6a11-4bf6-908a-49f7ce057bd4”;

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

$headers = array(
“apiKeyLstimelapses: 12345”,
“Content-Type: application/json”,
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);

$data = <<<DATA
{
“toEmail”:”leonado@gmail.com”,
“subject”:”Teste de assunto”,
“fromEmail”:”contato@lstimelapses.com.br”,
“bodyEmail”:”<H1>TESTE2</H1>”
}
DATA;

curl_setopt($curl, CURLOPT_POSTFIELDS, $data);

//for debug only!
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);

$resp = curl_exec($curl);
curl_close($curl);
var_dump($resp);

?>

 

contato@lstimelapses.com.br
Top apartmentuserssmartphonemagnifiercrosslistarrow-left