Volusion OrderFinished.asp の出口調査ポップアップに ResellerRatings を使用しています。
ResellerRatings は次のコードを提供しました。
<script type="text/javascript">
var _rrES = {
seller_id: 101069,
email: "customer@home.com",
invoice: "INVOICE NUMBER",
auto: true
};
(function(w,o) {
o=o||{};w.seller_id=o.seller_id||"";w.__rr_email_pass=o.email||"";w.__rr_inv=o.invoice||"";
if(o.auto===false)w.__rr_autoEnroll=false;
var s=document.createElement('script');s.type='text/javascript';s.async=true;
s.src="https://www.resellerratings.com/popup/include/popup.js";var ss=document.getElementsByTagName('script')[0];
ss.parentNode.insertBefore(s,ss);
})(window, _rrES);
</script>
ResellerRatings の指示で、「実装中にメール: "customer@home.com" と請求書: "INVOICE NUMBER" の値を更新してください」と指示されました。
email: "customer@home.com",
invoice: "INVOICE NUMBER",
しかし、これらは各顧客に応じて変数である必要があることはわかっています。Volusion に連絡して、「コーディングはまったく役に立ちません...」という回答がありました。ですから、Stackoverflow の力を利用して、ここで私を助けたいと思っています。これらの変数はどのようなもので、どのような形式である必要がありますか? 前もって感謝します。