Beispiel #1
0
        public async Task <bool> Handle(SendProductAskQuestionMessageCommand request, CancellationToken cancellationToken)
        {
            await _messageProviderService.SendProductQuestionMessage(request.Customer, request.Store,
                                                                     request.Language.Id, request.Product, request.Model.Email, request.Model.FullName, request.Model.Phone,
                                                                     FormatText.ConvertText(request.Model.Message));

            return(true);
        }