diff --git a/src/PowderCoating.Application/Mappings/QuoteProfile.cs b/src/PowderCoating.Application/Mappings/QuoteProfile.cs index 5def287..bc18feb 100644 --- a/src/PowderCoating.Application/Mappings/QuoteProfile.cs +++ b/src/PowderCoating.Application/Mappings/QuoteProfile.cs @@ -35,7 +35,7 @@ public class QuoteProfile : Profile .ForMember(dest => dest.CustomerName, opt => opt.MapFrom(src => src.Customer != null ? src.Customer.CompanyName : null)) .ForMember(dest => dest.CustomerEmail, opt => opt.MapFrom(src => - src.Customer != null ? src.Customer.Email : null)) + src.Customer != null ? src.Customer.Email : src.ProspectEmail)) .ForMember(dest => dest.CustomerMobilePhone, opt => opt.MapFrom(src => src.Customer != null ? src.Customer.MobilePhone : null)) .ForMember(dest => dest.CustomerNotifyBySms, opt => opt.MapFrom(src =>