solidus

https://github.com/solidusio/solidus

Ruby

🛒 Solidus, the open-source eCommerce framework for industry trailblazers.

Spree::CartonMailer#shipped_email

Send an email to customers to notify that an individual carton has been
shipped. If a carton contains items from multiple orders then this will be
called with that carton one time for each order.

Note: The signature of this method has changed. The new (non-deprecated)
signature is:
  def shipped_email(carton:, order:, resend: false)

Source | Google | Stack overflow

Edit

git clone [email protected]:solidusio/solidus.git

cd solidus

open core/app/mailers/spree/carton_mailer.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-Spree--CartonMailer-shipped_email-for-pr


# Commit to git

git add core/app/mailers/spree/carton_mailer.rbgit commit -m "better docs for Spree::CartonMailer#shipped_email"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-Spree--CartonMailer-shipped_email-for-pr

hub pull-request


# Celebrate!