[email protected] wrote:Message is not queued, where do I check those settings? I'm fairly new to nop
which version of nop are you using ??
do you have any customization ??
you need to got to Nop.Services/Orders/OrderProcessingService.cs
check the PlaceOrder method and need to debug that methods by using authorize.net as payment option
if you know how to debug you need to debug the PlaceOrder methods
find the keyword "#region Notifications & notes" and place debug points there and check that its processing below funtion
var orderPlacedAttachmentFilePath = _orderSettings.AttachPdfInvoiceToOrderPlacedEmail ?
_pdfService.PrintOrderToPdf(order, order.CustomerLanguageId) : null;
var orderPlacedAttachmentFileName = _orderSettings.AttachPdfInvoiceToOrderPlacedEmail ?
"order.pdf" : null;
int orderPlacedCustomerNotificationQueuedEmailId = _workflowMessageService
.SendOrderPlacedCustomerNotification(order, order.CustomerLanguageId, orderPlacedAttachmentFilePath, orderPlacedAttachmentFileName);
if (orderPlacedCustomerNotificationQueuedEmailId > 0)
{
}
orderPlacedCustomerNotificationQueuedEmailId should have unique value of messageQueue Id