Headlines

Dive into the world of GreenYellow: your go-to source for the latest news about our company, and the challenges of decarbonization and energy electrification. GreenYellow is at the heart of the energy transition, and this page is your gateway to discovering our latest achievements and our commitment to a more sustainable and high-performing future.

LATEST PRESS RELEASES

Receive our latest News

Fill in the fields below to receive our latest news notifications by e-mail.

"*" indicates required fields

This field is hidden when viewing the form
// gform_X -> X = Form ID const gyFormId = 3; window.addEventListener(“load”, (event) => { const gyForm = document.getElementById(“gform_”.concat(gyFormId)); gyForm.addEventListener(“submit”, concatSalesforce); const gySubmitBtn = document.getElementById(“gform_submit_button_”.concat(gyFormId)); gySubmitBtn.addEventListener(“click”, concatSalesforce); async function concatSalesforce(event) { event.preventDefault(); const inputCompany = gyForm.querySelector(‘div.gy_sf_company input’); const inputName = gyForm.querySelector(‘div.gy_sf_name input’); const inputSurName = gyForm.querySelector(‘div.gy_sf_surname input’); const inputEmail = gyForm.querySelector(‘div.gy_sf_email input’); const inputDescription = gyForm.querySelector(‘div.gy_sf_description textarea’); inputDescription.value = “BLOG FORM\nSociete : ” + inputCompany.value + “\nNom : ” + inputName.value + “\nPrenom : ” + inputSurName.value + “\nEmail : ” + inputEmail.value; await updateDescription(); //gyForm.submit(); } function updateDescription() { return new Promise((resolve) => { resolve(); }); } });
This field is hidden when viewing the form