Aftership (nopCommerce team)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 Jahre weitere
Hello

Love this plugin!

I add the tracking details in the shipment and the customers email is populated in AfterShip and they receive email updates...wonderful!

However, I have just turned on "allow guests to checkout" and when tracking info is added to shipment for guest users, no email is populated in AfterShip.

Any idea how I can take the email address from Order | BillAddress | Email Address instead?

Cheers
7 Jahre weitere
*bump*

Anyone? I will pay lol
7 Jahre weitere
It requires customization (and rebuild the project in Visual Studio).
Edit \Nop.Plugin.Tracking.AfterShip\Infrastructure\ModelEventConsumer.cs

        private void CreateTracking(Shipment shipment)
        {
...
            if (_settings.AllowCustomerNotification)
            {
                track.Emails = new List<string> { customer.Email };
            }

(Get the Email from one of the addresses in the Order)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.