Nova Mensagem
Nome: $nome
Telefone: $telefone
País: $pais
Empresa: $empresa");
$mail = new SendGrid\Mail($from, $subject, $to, $content);
//Necessário inserir a chave
$apiKey = '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';
$sg = new \SendGrid($apiKey);
$response = $sg->client->mail()->send()->post($mail);
echo "Registo concluido"
?>