PHP code example of proxiedmail / laravel-receive-email
1. Go to this page and download the library: Download proxiedmail/laravel-receive-email library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
proxiedmail / laravel-receive-email example snippets
return [
'apiToken' => 'YOUR API TOKEN',
'host' => 'https://proxiedmail.com',
];
use ProxiedMail\Client\Bridge\ProxiedMailClient;
use ProxiedMail\Client\Facades\ApiFacade;
class ExampleController
{
public function browseReceivedEmails(ProxiedMailClient $proxiedMailClient)
{
/**
* @var ApiFacade $api
*/
$api = $proxiedMailClient->getClient();
$proxyEmail = $api->createProxyEmail(
[],
null,
null,
null,
true
);
// while (true) with 100 seconds limit
foreach (range(0, 180) as $non) {
echo "PROXY-EMAIL: " . $proxyEmail->getProxyAddress() . "\n";
echo "Time limit is 3 mins \n";
echo "Send the email to this proxy-email to get email payload printed here \n";
//checking webhook receiver
$receivedEmails = $api->getReceivedEmailsLinksByProxyEmailId($proxyEmail->getId())->getReceivedEmailLinks();
echo "Amount of received emails: " . count($receivedEmails) . "\n";
foreach ($receivedEmails as $receivedEmail) {
echo "Have received email: \n";
var_dump($receivedEmail);
echo "\n";
}
echo "\n";
sleep(1);
}
}
public function receiveEmailViaWebhook(ProxiedMailClient $proxiedMailClient)
{
/**
* @var ApiFacade $api
*/
$api = $proxiedMailClient->getClient();
$wh = $api->createWebhook(); //creating webhook-receiver
$proxyEmail = $api->createProxyEmail(
[],
null,
$wh->getCallUrl() //specifying webhook url
);
// while (true) with 100 seconds limit
foreach (range(0, 100) as $non) {
echo "PROXY-EMAIL: " . $proxyEmail->getProxyAddress() . "\n";
echo "Send the email to this proxy-email to get email payload printed here";
//checking webhook receiver
$whStatus = $api->statusWebhook($wh->getId());
echo "Webhook STATUS: \n";
echo "Received: " . ($whStatus->isReceived() ? 'yes' : 'no') . "\n"; //printing webhook status
//printing payload if received
if ($whStatus->isReceived()) {
echo "WEBHOOK PAYLOAD: \n";
echo json_encode($whStatus->getPayload());
break;
}
echo "\n";
sleep(1);
}
}
}
bash
php artisan vendor:publish --tag=proxiedmail