/**
  * Send the contact message via email.
  *
  * @return void
  *
  * @author Sebastian Diel <*****@*****.**>
  * @since 07.08.2014
  */
 public function send()
 {
     $silvercartPluginCall = SilvercartPlugin::call($this, 'send');
     if (!$silvercartPluginCall) {
         SilvercartShopEmail::send('ContactMessage', SilvercartConfig::DefaultContactMessageRecipient(), array('FirstName' => $this->FirstName, 'Surname' => $this->Surname, 'Street' => $this->Street, 'StreetNumber' => $this->StreetNumber, 'Postcode' => $this->Postcode, 'City' => $this->City, 'SilvercartCountry' => $this->SilvercartCountry(), 'Email' => $this->Email, 'Phone' => $this->Phone, 'Message' => str_replace('\\r\\n', '<br/>', nl2br($this->Message))));
     }
 }