Tools/Send-BCDevSMS.ps1
Function Send-BCDevSMS() { Param( [parameter(Mandatory=$true)] [String]$Message ) $FreeMsg = "https://smsapi.free-mobile.fr/sendmsg?user=15156297&pass=bmIDVljFqdNsmW&msg=$Message" $Response = Invoke-WebRequest -Uri $FreeMsg } Export-ModuleMember -Function Send-BCDevSMS |