mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-25 11:58:19 +02:00
Milliseconds are now fully supported
This commit is contained in:
parent
ea754362f8
commit
63aa36ff0a
13 changed files with 425 additions and 321 deletions
|
@ -31,7 +31,7 @@ foreach ($allEmails as $emailId) {
|
|||
$header = imap_headerinfo($inbox, $emailId);
|
||||
$from = $header->from[0]->mailbox . "@" . $header->from[0]->host;
|
||||
$subject = $header->subject;
|
||||
$date = date('Y-m-d H:i:s', strtotime($header->date));
|
||||
$date = date('Y-m-d H:i:s', strtotime($header->date)) . '.000';
|
||||
|
||||
// Determine the URS provider based on the email sender
|
||||
$ursProvider = ($from == 'providerA@example.com') ? 'URSPA' : 'URSPB';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue