-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMassPay.html
More file actions
139 lines (131 loc) · 3.88 KB
/
MassPay.html
File metadata and controls
139 lines (131 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!--
MassPay.html
This is the main page for MassPay sample.
MassPay is usefull to capture multiple transactions
in a single shot, like batch settlement.
This page allow the user to enter the required
parameters for MassPay API call and a Submit button
that calls MassPayReceipt.php.
Called by index.html.
Calls MassPayReceipt.php.
-->
<html>
<head>
<title>PayPal SDK - MassPay</title>
<link href="sdk.css" rel="stylesheet" type="text/css">
</head>
<body>
<form method="POST" action="MassPayReceipt.php" ID="Form1">
<center>
<table class="api" ID="Table1">
<tr>
<td></td>
<td></td>
<td colspan="6" align="center">
<font size="larger" color="black" face="Verdana"><b>MassPay </b></font>
</td>
</tr>
<TR>
<TD class="thinfield" width="52">EmailSubject</TD>
<TD><INPUT id="EmailSubject" type="text" value="You have money!" name="emailSubject" runat="server"></TD>
<TD class="field"></TD>
<TD class="field"></TD>
<TD class="field"></TD>
</TR>
<TR>
<TD class="thinfield" width="52">ReceiverType</TD>
<TD><INPUT id="ReceiverType" type="text" value="EmailAddress" name="receiverType" runat="server"></TD>
<TD class="field"></TD>
<TD class="field"></TD>
<TD class="field"></TD>
</TR>
<TR>
<TD class="thinfield" width="52">CurrencyCode</TD>
<TD>
<select name="currency" ID="Select1">
<option value="USD" selected>USD</option>
<option value="GBP">GBP</option>
<option value="EUR">EUR</option>
<option value="JPY">JPY</option>
<option value="CAD">CAD</option>
<option value="AUD">AUD</option>
</select>
</TD>
</TR>
<TR>
<TD class="thinfield" height="14" colSpan="5">
<P align="center">Mass Pay Item Details</P>
</TD>
</TR>
<tr>
<td class="thinfield" width="52">
Payee</td>
<td class="thinfield">
ReceiverEmail (Required):</td>
<td class="thinfield">
Amount(Required):</td>
<td class="thinfield">
UniqueID</td>
<td class="thinfield">
Note</td>
</tr>
<tr>
<td width="52">
<P align="right">1</P>
</td>
<td>
<input type="text" name="receiveremail[]" value="user@paypal.com" ID="Text1">
</td>
<td>
<input type="text" name="amount[]" size="5" maxlength="7" value="1.00" ID="Text2">
</td>
<td>
<input type="text" name="uniqueID[]" ID="Text3"></td>
<td>
<input type="text" name="note[]" ID="Text4">
</td>
</tr>
<tr>
<td width="52">
<P align="right">2</P>
</td>
<td>
<input type="text" name="receiveremail[]" value="user@paypal.com" ID="Text5">
</td>
<td>
<input type="text" name="amount[]" size="5" maxlength="7" value="1.00" ID="Text6">
</td>
<td>
<input type="text" name="uniqueID[]" ID="Text7"></td>
<td>
<input type="text" name="note[]" ID="Text8">
</td>
</tr>
<tr>
<td width="52">
<P align="right">3</P>
</td>
<td>
<input type="text" name="receiveremail[]" value="user@paypal.com" ID="Text9">
</td>
<td>
<input type="text" name="amount[]" size="5" maxlength="7" value="1.00" ID="Text10">
</td>
<td>
<input type="text" name="uniqueID[]" ID="Text11"></td>
<td>
<input type="text" name="note[]" ID="Text12">
</td>
</tr>
<tr>
<td class="thinfield" width="52">
</td>
<td colspan="5">
<input type="submit" value="Submit" ID="Submit1" NAME="Submit1"></td>
</tr>
</table>
</center>
<a class="home" id="CallsLink" href="index.html">Home</a>
</form>
</body>
</html>