This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table bgcolor="#9574a3" border="0" cellpadding="0" cellspacing="0" height="37" width="100%"> | |
<tbody> | |
<tr> | |
<td align="left" class="" style="padding: 0px 0px 0px 18px; font-size:14px; line-height:22px; color:#fff; text-transform:uppercase; font-weight:bold; font-family: century gothic, Arial, Helvetica, sans-serif" width="411px">Item</td> | |
<td align="center" class="" style="padding: 0px 0px 0px 0px; font-size:14px; line-height:22px; color:#fff; text-transform:uppercase; font-weight:bold; font-family: century gothic, Arial, Helvetica, sans-serif" width="94px">Quantity</td> | |
<td align="center" class="" style="padding: 0px 0px 0px 0px; font-size:14px; line-height:22px; color:#fff; text-transform:uppercase; font-weight:bold; font-family: century gothic, Arial, Helvetica, sans-serif" width="94px">Ship Date</td> | |
</tr> | |
</tbody> | |
</table> | |
<table border="0" cellpadding="0" cellspacing="0" width="100%"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'sendwithus_php/API.php'; | |
$API_KEY = 'THIS_IS_A_TEST_API_KEY'; // <-- API key from the "API Settings" in the | |
$options = array( // sendwithus dashboard goes here | |
'DEBUG' => true // For testing purposes, this can be disabled later. | |
); | |
$api = new API($API_KEY, $options); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'sender' => array( | |
'name' => 'message', | |
'address' => '[email protected]', | |
'reply_to' => '[email protected]', | |
) | |
/* or maybe this */ | |
'sender' => array( | |
'address' => '[email protected]', | |
'reply_to' => '[email protected]', |
NewerOlder