MattK
Joined: 10 Nov 2005 Posts: 40
|
Posted: Mon Mar 20, 2006 4:29 pm Post subject: Template for PayPal payment reminder for Yahoo Stores |
|
|
Just made this and thought I'd share -would welcome any improvements/input as well.
Best,
/MattK
[b][u]Here's what it generates:[/u][/b]
Dear xx,
Your order #xx has been recieved but we haven't recieved the PayPal payment you indicated you were going to send.
In order to send your payment to us via PayPal please follow these instructions:
1)Log into Your PayPal account.
2)Click on the Send Money tab.
3)Enter the required information:
Recipient's Email - paypal@xx.com
Amount - Your Order Total of: $118.80 (including shipping)
Type - Goods (other)
Subject - xx.com Order# 4531
Note - You can leave this field blank unless you need to add additional information
4)Click Continue
5)Review the information on the confirmation page and click Send Money to complete your transaction
As soon as we receive and validate this information your order will be immediately released and processed.
If you believe you've received this message in error, please reply with the PayPal transaction ID from your sent payment.
Thanks for your business and for your prompt attention to this matter.
Sincerely,
The xx.com Customer Service Team
[code]<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sw="http://www.interapptive.com/shipworks" extension-element-prefixes="sw">
<xsl:import href="System\Common" />
<xsl:output method="html" encoding="utf-8" />
<sw:settings>
<sw:preview>
<sw:filter>5 On Hold - PAYPAL PENDING</sw:filter>
<sw:count>15</sw:count>
</sw:preview>
<sw:email>
<sw:store id="2">
<sw:bcc>admin@xxx.com</sw:bcc>
<sw:account>4</sw:account>
<sw:subject>Your xx.com Order {//Order/Number} needs immediate attention.</sw:subject>
</sw:store>
<sw:default>
<sw:includeInMenu>True</sw:includeInMenu>
<sw:subject>Your Order {//Order/Number} Has Shipped</sw:subject>
</sw:default>
</sw:email>
<sw:general>
<sw:context>order</sw:context>
</sw:general>
</sw:settings>
<xsl:template match="/">
<html>
<head>
<title>Shipment Notification</title>
<style>
body, td, table, div { font: 10pt Arial;}
</style>
</head>
<body>
<xsl:variable name="order" select="//Order[1]" />
<xsl:variable name="address" select="$order/Address[@type='bill']" />
Dear <xsl:value-of select="$address/FirstName" />,
<p>
Your order #<xsl:value-of select="$order/Number" /> has been recieved but we haven't recieved the PayPal payment you indicated you were going to send.
</p>
In order to send your payment to us via PayPal please follow these instructions:
<br> 1)Log into Your PayPal account. </br>
<br> 2)Click on the Send Money tab. </br>
<br> 3)Enter the required information: </br>
<ul> Recipient's Email - paypal@xx.com </ul>
<ul> Amount - Your <tr id="orderTotal">
<td class="name">Order Total of: $</td>
<td class="value"><xsl:value-of select="format-number($order/Total, '#,##0.00')" /></td>
</tr> (including shipping) </ul>
<ul> Type - Goods (other)</ul>
<ul> Subject - xxxx.com Order# <xsl:value-of select="$order/Number" /> </ul>
<ul> Note - You can leave this field blank unless you need to add additional information</ul>
<br> 4)Click Continue </br>
<br> 5)Review the information on the confirmation page and click Send Money to complete your transaction</br>
<br></br>
<p>As soon as we receive and validate this information your order will be immediately released and processed.</p>
<p>If you believe you've received this message in error, please reply with the PayPal transaction ID from your sent payment.</p>
<p>Thanks for your business and for your prompt attention to this matter.</p>
Sincerely,<br />
The <xsl:value-of select="//Store/StoreName" /> Customer Service Team
</body>
</html>
</xsl:template>
</xsl:stylesheet>[/code] |
|