Side Effect

You might say

A user is only previewing a price. Do not silently write an order or send email; do that only after explicit submission.

A function or request changes external state or triggers an external action beyond returning a valueA price preview can calculate and return shipping without creating a quote or sending email. Saving the order and notifying the user are intentional side effects when the user explicitly submits. A side effect is not automatically an error; it needs a clear trigger and observable result.
Further reading