Send-FilesViaEmail.psd1
|
@{ RootModule = 'Send-FilesViaEmail.psm1' ModuleVersion = '1.0.0' GUID = '8a53e590-c765-4c75-82f5-772da48fcaaf' Author = 'Roy Ashbrook' CompanyName = 'ashbrook.io' Copyright = '(c) 2026 royashbrook. All rights reserved.' Description = 'Sends one email with one or more file attachments through Microsoft Graph. Pass in file paths and mail config.' PowerShellVersion = '7.0' FunctionsToExport = @('Send-FilesViaEmail') AliasesToExport = @() CmdletsToExport = @() VariablesToExport = @() PrivateData = @{ PSData = @{ Tags = @('email', 'graph', 'attachments', 'msgraph') LicenseUri = 'https://github.com/royashbrook/Send-FilesViaEmail/blob/main/LICENSE' ProjectUri = 'https://github.com/royashbrook/Send-FilesViaEmail' } } } |