You are here

public function Order::getEmail in Ubercart 8.4

Returns the order e-mail address.

Return value

string The e-mail address.

Overrides OrderInterface::getEmail

File

uc_order/src/Entity/Order.php, line 354

Class

Order
Defines the order entity class.

Namespace

Drupal\uc_order\Entity

Code

public function getEmail() {
  return $this
    ->get('primary_email')->value;
}