public void SendCoupon(string title, String targetUri)
{
  var recipient = callerPhoneNumber.Value;
  Logger.DebugFormat("wysyanie mms-a do '{0}', tytu '{1}', tre '{2}'", recipient, title, targetUri); 
  SendCouponRequest evt = new SendCouponRequest()
                             {
                               Recipient = recipient,
                               Content = new Uri(targetUri),
                               Title = title
                             };
  eventBroker.RaiseEvent<SendCouponRequest>(evt);
}
