Skip to content

Commit 63acfeb

Browse files
Fix long sentences
1 parent 6ccf467 commit 63acfeb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

15/umbraco-commerce/how-to-guides/payment-links.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Learn how to send a payment links to customers in Umbraco Commerce.
44

55
# Sending Payment Links to Customers
66

7-
A common scenario in ecommerce can be when a store owner wants to send a pre-filled cart to a customer for them to complete the purchase. This can be useful in many scenarios, for example, if a customer has requested a quote and the store owner wants to send a link to the customer to make payment.
7+
A common scenario in ecommerce can be when a store owner wants to send a pre-filled cart to a customer for them to complete. This can be useful in many scenarios. For example, if a customer has requested a quote and the store owner wants to send a link to the customer to make payment.
88

9-
In Umbraco Commerce, you can easily create a payment link and send it to the customer. The customer can then click on the link and complete the purchase.
9+
In Umbraco Commerce it take but a few clicks to create and send a payment link. The customer can then click on the link and complete the purchase.
1010

1111
{% hint style="info" %}
1212
The payment links feature was introduced in Umbraco Commerce version 15.3.0
@@ -42,7 +42,7 @@ Clicking on the **Copy to Clipboard** button will generate the payment link and
4242

4343
### Send via Email
4444

45-
Clicking on the **Send via Email** button will launch the send email modal allowing the selection of the email template to use, along with the email address of the recipient.
45+
Clicking on the **Send via Email** button will launch the send email modal. From here you can select the email template to use, along with the email address of the recipient.
4646

4747
![Email Template Selection](images/payment-links/choose-payment-link-email-template.png)
4848

@@ -76,9 +76,9 @@ Developers should use this querystring parameter to display a message to the cus
7676

7777
## Headless Considerations
7878

79-
For standard Razor site implementations the handling of the payment links is done automatically, however for headless Storefront API implementations you will need to handle the payment links manually.
79+
For standard Razor site implementations the handling of the payment links is done automatically. For headless headless Storefront API implementations however, you will need to handle the payment links manually.
8080

81-
Developers should check for a `payment_link_token` querystring parameter when a customer lands on the site. If this parameter is present, the developer should use the [Storefront API](../reference/storefront-api/endpoints/order.md#umbraco-commerce-storefront-api-v1-order-paymentlinktoken) to retrieve the cart associated with the payment link token and load the cart into the session.
81+
Developers should check for a `payment_link_token` querystring parameter when a customer lands on the site. If present, the developer should use the [Storefront API](../reference/storefront-api/endpoints/order.md#umbraco-commerce-storefront-api-v1-order-paymentlinktoken) to retrieve the cart associated with the payment link token. This can then be loaded into the session for the customer to complete payment.
8282

8383
## Configuration Options
8484

@@ -100,4 +100,4 @@ The payment links feature has a number of configuration options you can set via
100100
```
101101
{% endcode %}
102102

103-
By default Umbraco Commerce payment link tokens are based on the JWT format and are signed using the `TokenSigningSecret` value. The `TokenQueryParameterName` and `ErrorQueryParameterName` values are used to configure the querystring parameter names used for the payment link token and error messages respectively.
103+
By default Umbraco Commerce payment link tokens are based on the JWT format and are signed using the `TokenSigningSecret` value. The `TokenQueryParameterName` value is used to configure the querystring parameter name used for the payment link token. The `ErrorQueryParameterName` value is used to configure the querystring parameter name used for an error message.

0 commit comments

Comments
 (0)