-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReadMailPSCONF.ps1
59 lines (48 loc) · 1.46 KB
/
ReadMailPSCONF.ps1
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
$clientID = "your-ClientID"
$Clientsecret = "your-Secret"
$tenantID = "your-TenantID"
$BaseURL="https://graph.microsoft.com/v1.0"
$UserUPN="[email protected]"
$MailArray=@()
#Connect to GRAPH API
$tokenBody = @{
Grant_Type = "client_credentials"
Scope = "https://graph.microsoft.com/.default"
Client_Id = $clientId
Client_Secret = $clientSecret
}
$tokenResponse = Invoke-RestMethod -Uri "https://login.microsoftonline.com/$tenantID/oauth2/v2.0/token" -Method POST -Body $tokenBody
$headers = @{
"Authorization" = "Bearer $($tokenResponse.access_token)"
"Content-type" = "application/json"
}
$URLReadFolder="$BaseURL/users/$UserUPN/mailFolders"
$Inboxfolder=(Invoke-RestMethod -Method GET -Uri $URLReadFolder -Headers $headers).value | Where-Object -Property displayname -Value Inbox -eq
$URLReadMail="$BaseURL/users/$UserUPN/mailFolders/$($Inboxfolder.id)/messages?`$filter=startswith(Subject,'au2mator - Self Service Portal')"
$Mails=Invoke-RestMethod -Method GET -Uri $URLReadMail -Headers $headers
foreach ($M in $Mails.value)
{
$Mailarray+=$M.body.content.substring(0,$M.body.content.IndexOf(")")+1).replace("From: ","")
}
""
""
""
"The Comic Winners are:"
""
$Comicwinners=$MailArray | Get-Random -Count 3
$Comicwinners
""
""
""
$MailArray = $MailArray |Where-Object { $Comicwinners -notcontains $_ }
#$MailArray.count
$BaseCapWinners=$MailArray | Get-Random -Count 3
""
""
""
"The BaseCap Winners are:"
""
$BaseCapWinners
""
""
""