Tutorial

EcoMail integration on User Register Event in Drupal 8 / 9

In this case we have two options, either we use hook_user_presave() or we can create new submit handler and use that. 

I picked the second option just because I needed some values from $form_state variable, specifically selected role from Role Expose module. This value was not present in hook_user_presave(), because at the time hook_user_presave() runs, user does not exist yet and transaction is not finished, so he does not have any roles at all. (well, techgnically he has "anonymous" role).

Pridal/a lubo dňa Št, 12/15/2022 - 05:19
Create new submit handler using hook_form_alter()

This code reacts on user_register_form form ID.

function grafeon_custom_form_alter(&$form, &$form_state, $form_id) { 
  if($form_id == 'user_register_form') {
    $form['actions']['submit']['#submit'][] = 'grafeon_custom_ecomail';
  }   
}

 

Use the handler to send values to Ecomail

Well I will just copy-paste the code here and maybe, someone in the future can use it. As I said previously, I was getting role from $form_state array but you can safely remove that.

function grafeon_custom_ecomail($form, $form_state) {
	$user = $form_state->getFormObject()->getEntity();
  
	// ecomail
	$ch = curl_init();

	curl_setopt($ch, CURLOPT_URL, "https://api2.ecomailapp.cz/lists/[LIST_ID]/subscribe"); // Pick your list ID from Ecomail
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
	curl_setopt($ch, CURLOPT_HEADER, FALSE);

	curl_setopt($ch, CURLOPT_POST, TRUE);

	curl_setopt($ch, CURLOPT_HTTPHEADER, array(
	  "key: [YOUR_API_KEY]",
	  "Content-Type: application/json"
	));
	
// This gets the custom values, like pretitle, surname, etc.
	$titul_pred_menom = $user->get('field_titul_pred_menom')->getString();
	$vase_meno = $user->get('field_vase_meno')->getString();
	$vase_priezvisko = $user->get('field_vase_priezvisko')->getString();
	$titul_za_menom = $user->get('field_titul_za_menom')->getString();
	
	$tags = [];
	
// This gets the role from Role Expose module
	$role = $form_state->getValues()["select_roles"];
	
	if($role == "ucitel") {
		array_push($tags,"ucitel");
	}
	else {
		array_push($tags,"student");
	}
	
	$data = json_encode(array(
		"subscriber_data"  => array(
			"pretitle" => $titul_pred_menom,
			"name" => $vase_meno,
			"surname" => $vase_priezvisko,
			"surtitle" => $titul_za_menom,
			"email" => $user->getEmail(),
			"tags" => $tags
		)
	));
	curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
	

	$response = curl_exec($ch);
	curl_close($ch);
  
}

 

Might interest you

Tutorial
This one is quick and works the same with any other code provided by third party.
Tutorial
So, sometimes you just want to hide "upload" button and instead upload all the files people drop to website instantly. This handy snipplet…

Recommended

Tutorial
3 views
This sketch is quite easy, I used Arduino Nano with OLED 0.96″ display 128×64 resolution…
Tutorial
8 views
While working on a fairly complex website with very complex views setup, including tens…
Tutorial
6 views
In this case we have two options, either we use hook_user_presave() or we can create new…
Tutorial
6 views
When using Swiftmailer under Drupal 8 / 9 it automatically sets the headers for sender to…
Tutorial
3 views
Yes, IOS / Safari is the new internet explorer. Amount of time I spend on debugging…
Tutorial
10 views
There is a very handy function in Drupal 8 / 9, allowing developers refresh view when…
Tutorial
4 views
Often, when doing SEO checkups, SEO specialist come up with adding Schema.org…
Tutorial
78 views
I needed to test my contracts against USDC contract, specifically I needed ERC-721 mint…
Tutorial
4 views
If you are a newbie like I am and struggling with setting the proper MYSQL my.cnf config…
Tutorial
10 views
I had trouble to set this up properly, because documentation is quite misleading or often…
Article
56 views
As the title says, DO NOT in any circumstances install ANY bitcoin price extension to ANY…
Tutorial
173 views
This is (or should be) a working example of sending some Ether between two addresses.…
Module
43 views
This list was fetched from Zapper, with their /v1/token-list endpoint. Which you can…
Tutorial
98 views
In the last months I am being pretty much bombarded by my clients with asking what…
Tutorial
25 views
So sometimes you just need to transliterate some kind of foreign (or local) language, and…