diff --git a/m122/LB2_Projekt-eBilling-Einzelaufgabe/README.md b/m122/LB2_Projekt-eBilling-Einzelaufgabe/README.md index 3e54842..5d2833f 100644 --- a/m122/LB2_Projekt-eBilling-Einzelaufgabe/README.md +++ b/m122/LB2_Projekt-eBilling-Einzelaufgabe/README.md @@ -1,4 +1,3 @@ - ### FTP - [https://www.howtoforge.com/tutorial/how-to-use-ftp-on-the-linux-shell/](https://www.howtoforge.com/tutorial/how-to-use-ftp-on-the-linux-shell/) @@ -7,13 +6,38 @@
![../tools-technics/ftpanweisungen.jpg](../tools-technics/ftpanweisungen.jpg) + **cmd-Beispiel**
![../tools-technics/cmd-ftp-start.bat.jpg](../tools-technics/cmd-ftp-start.bat.jpg) ![../tools-technics/cmdcommands.ftp.jpg](../tools-technics/cmdcommands.ftp.jpg) + ### E-Mail - [https://www.linuxfordevices.com/tutorials/linux/mail-command-in-linux](https://www.linuxfordevices.com/tutorials/linux/mail-command-in-linux) - [https://www.geeksforgeeks.org/send-mails-using-a-bash-script](https://www.geeksforgeeks.org/send-mails-using-a-bash-script) + + +**Mailing mit Python** (Dank an Hr. Noel L. Hug, AP21a) + +import win32com.client as win32 +
+![../tools-technics/mailing-mit-python.jpg](../tools-technics/mailing-mit-python.jpg) + + +**Mailing mit PowerShell** + +[../tools-technics/mailing-mit-powershell](../tools-technics/mailing-mit-powershell) +
+![../tools-technics/mailing-mit-powershell.jpg](../tools-technics/mailing-mit-powershell.jpg) + + + +**Mailing mit PHP** (nur auf Webserver!) + +Diese Art funktioniert nur auf einem Webserver, auf dem ein Mailserver installiert ist, was bei allen teuren und billigen Internetprovidern normal ist. Wenn es auf dem lokalen Rechner funltionieren soll, muss zuerst ein Mailserver lokal installiert werden. + +
+![../tools-technics/mailing-mit-phpwebserver.jpg](../tools-technics/mailing-mit-phpwebserver.jpg) diff --git a/m122/tools-technics/README.md b/m122/tools-technics/README.md index 29cf4db..90f5af3 100644 --- a/m122/tools-technics/README.md +++ b/m122/tools-technics/README.md @@ -20,3 +20,30 @@ ### E-Mail +- [https://www.linuxfordevices.com/tutorials/linux/mail-command-in-linux](https://www.linuxfordevices.com/tutorials/linux/mail-command-in-linux) +- [https://www.geeksforgeeks.org/send-mails-using-a-bash-script](https://www.geeksforgeeks.org/send-mails-using-a-bash-script) + + +**Mailing mit Python** (Dank an Hr. Noel L. Hug, AP21a) + +import win32com.client as win32 +
+![./mailing-mit-python.jpg](mailing-mit-python.jpg) + + + +**Mailing mit PowerShell** + +[./mailing-mit-powershell](./mailing-mit-powershell) +
+![./mailing-mit-powershell.jpg](./mailing-mit-powershell.jpg) + + + +**Mailing mit PHP** (nur auf Webserver!) + +Diese Art funktioniert nur auf einem Webserver, auf dem ein Mailserver installiert ist, was bei allen teuren und billigen Internetprovidern normal ist. Wenn es auf dem lokalen Rechner funltionieren soll, muss zuerst ein Mailserver lokal installiert werden. + +
+![./mailing-mit-phpwebserver.jpg](./mailing-mit-phpwebserver.jpg) + diff --git a/m122/tools-technics/ftpanweisungen.jpg b/m122/tools-technics/ftpanweisungen.jpg index 7cd1985..d41ce02 100644 Binary files a/m122/tools-technics/ftpanweisungen.jpg and b/m122/tools-technics/ftpanweisungen.jpg differ diff --git a/m122/tools-technics/mailing-mit-phpwebserver.jpg b/m122/tools-technics/mailing-mit-phpwebserver.jpg new file mode 100644 index 0000000..bb01e79 Binary files /dev/null and b/m122/tools-technics/mailing-mit-phpwebserver.jpg differ diff --git a/m122/tools-technics/mailing-mit-powershell.jpg b/m122/tools-technics/mailing-mit-powershell.jpg new file mode 100644 index 0000000..4a1bc27 Binary files /dev/null and b/m122/tools-technics/mailing-mit-powershell.jpg differ diff --git a/m122/tools-technics/mailing-mit-powershell/MailPW.txt b/m122/tools-technics/mailing-mit-powershell/MailPW.txt new file mode 100644 index 0000000..32ddaa0 Binary files /dev/null and b/m122/tools-technics/mailing-mit-powershell/MailPW.txt differ diff --git a/m122/tools-technics/mailing-mit-powershell/data.docx b/m122/tools-technics/mailing-mit-powershell/data.docx new file mode 100644 index 0000000..e69de29 diff --git a/m122/tools-technics/mailing-mit-powershell/data.pdf b/m122/tools-technics/mailing-mit-powershell/data.pdf new file mode 100644 index 0000000..ffe3a83 Binary files /dev/null and b/m122/tools-technics/mailing-mit-powershell/data.pdf differ diff --git a/m122/tools-technics/mailing-mit-powershell/powershell-mails.zip b/m122/tools-technics/mailing-mit-powershell/powershell-mails.zip new file mode 100644 index 0000000..2453585 Binary files /dev/null and b/m122/tools-technics/mailing-mit-powershell/powershell-mails.zip differ diff --git a/m122/tools-technics/mailing-mit-powershell/ps-sendmail-easy.ps1 b/m122/tools-technics/mailing-mit-powershell/ps-sendmail-easy.ps1 new file mode 100644 index 0000000..a88fdb2 --- /dev/null +++ b/m122/tools-technics/mailing-mit-powershell/ps-sendmail-easy.ps1 @@ -0,0 +1,35 @@ + +# Method to write an email with the logfile as attachement +#-------------------------------------------------------------------------------------------------- +function sendmail() { + $toMail = "harald.mueller@bluewin.ch" + $attachment = "C:\Users\Harald\OneDrive\Technik\mails\data.pdf" + + $SMTPServer = "smtp.gmail.com" + $SMTPPort = "587" + $Username = "invoice.autointerleasing@gmail.com" + + # password of the mail account + $Password = "invoice77autointerleasing" | ConvertTo-SecureString -AsPlainText -Force + + $subject = "Powi mail" + $body = "Logfile has been modified. Please review attached document $entry." + + $message = New-Object System.Net.Mail.MailMessage + $message.subject = $subject + $message.body = $body + $message.to.add($toMail) + $message.from = $username + $message.attachments.add($attachment) + + $smtp = New-Object System.Net.Mail.SmtpClient($SMTPServer, $SMTPPort); + $smtp.EnableSSL = $true + $smtp.Credentials = New-Object System.Net.NetworkCredential($Username, $Password); + $smtp.send($message) +} +## (Get-Credential).password | ConvertFrom-SecureString > mailpasswort.txt +## $pw = Get-Content .\mailpasswort.txt | ConvertTo-SecureString +## $cred = New-Object System.Management.Automation.PSCredential "MailUser", $pw +## Send-MailMessage -Credential $cred -to "harald.mueller@bluewin.ch" -from "PowerShell " -Subject "Test" -body "Test für Send-MailMessage" + +sendmail \ No newline at end of file diff --git a/m122/tools-technics/mailing-mit-powershell/ps-sendmail-umfangreich.ps1 b/m122/tools-technics/mailing-mit-powershell/ps-sendmail-umfangreich.ps1 new file mode 100644 index 0000000..cb4e1e9 --- /dev/null +++ b/m122/tools-technics/mailing-mit-powershell/ps-sendmail-umfangreich.ps1 @@ -0,0 +1,83 @@ +## (Get-Credential).password | ConvertFrom-SecureString > mailpasswort.txt +## $pw = Get-Content .\mailpasswort.txt | ConvertTo-SecureString +## $cred = New-Object System.Management.Automation.PSCredential "MailUser", $pw +## Send-MailMessage -Credential $cred -to "harald.mueller@bluewin.ch" -from "PowerShell " -Subject "Test" -body "Test für Send-MailMessage" + +$body = +"IHRE RECHNUNG VON AUTO-INTERLEASING AG +VOTRE FACTURE D'AUTO-INTERLEASING SA + +Sehr geehrte Damen und Herren +Madame, Monsieur, + +Mit dieser Mail erhalten Sie die aktuelle Rechnung von Auto-Interleasing als PDF. Die Papierrechnung erhalten Sie wie gewohnt mit der Post. +Par ce présent courrier, nous vous transmettons la facture d'Auto-Interleasing en version PDF. La facture papier vous parviendra comme d'habitude par courrier postal. + +Wir bitten Sie, den offenen Betrag unter Einhaltung der Zahlungsfrist an die auf dem beigefügten Einzahlungsschein vermerkten Kontonummer zu überweisen. +Nous vous prions de verser le montant dû conformément au délai de paiement mentionné sur le bulletin de versement joint. + +Einzahlung für: +Versement pour: + +Auto-Interleasing AG +St. Jakob-Strasse 72 +4132 Muttenz + +IBAN: CH21 0023 3233 1012 5122 0 + + +Freundliche Grüsse, +Avec nos cordiales salutations, + +Auto-Interleasing AG +St. Jakob-Strasse 72 +4132 Muttenz ++41 61 319 32 32 +info@auto-interleasing.ch +www.auto-interleasing.ch + + +Für die elektronische Rechnung sind Sie mit obiger E-Mail-Adresse bei uns registriert. +Pour l'envoi des factures par voie électronique, vous êtes inscrits avec l'adresse e-mail mentionnée ci-dessus + +Allfällige Änderungen Ihrer E-Mail-Adresse teilen Sie bitte unverzüglich Ihrem Kundenbetreuer mit. +Pour toute modification de votre adresse e-mail, nous vous prions de contacter votre gestionnaire. + +Bitte beachten Sie, dass Antworten auf diese E-Mail-Adresse leider nicht beantwortet werden können. +Im Falle von Rückfragen oder Unklarheiten wenden Sie sich bitte an Ihren zuständigen Kundenbetreuer. + +Vielen Dank! + +Veuillez prendre note qu'aucune correspondance ne peut être échangée par le biais de cette adresse e-mail. +Pour toutes questions ou informations, nous vous prions de contacter votre gestionnaire. Merci beaucoup ! +" +$SMTPHost = "smtp.gmail.com" +$SMTPPort = "587" +$Username = "invoice.autointerleasing@gmail.com" +$Password = "invoice77autointerleasing" | ConvertTo-SecureString -AsPlainText -Force + +$subjectFixtext = "RECHNUNG/FACTURE" + +$smtp = New-Object System.Net.Mail.SmtpClient($SMTPHost, $SMTPPort); +$smtp.EnableSSL = $true +$smtp.Credentials = New-Object System.Net.NetworkCredential($Username, $Password); + +$message = New-Object System.Net.Mail.MailMessage +$message.from = $username +$message.body = $body + +# Method to write an email with the logfile as attachement +function sendmail ([String] $toMail, [String] $attachment, [String] $RgNr) { + # $toMail = "harald.mueller@bluewin.ch" + # $attachment = "C:\Users\Harald\OneDrive\Technik\mails\data.pdf" + + $message.to.add("$toMail") + $message.attachments.add("$attachment") + $message.subject = $subjectFixtext + " Nr. " + $RgNr + + echo $toMail + echo $attachment + # $smtp.send($message) +} + +sendmail ("harald.mueller@bluewin.ch", "C:\Users\Harald\OneDrive\Technik\mails\data.pdf", "1") \ No newline at end of file diff --git a/m122/tools-technics/mailing-mit-python.jpg b/m122/tools-technics/mailing-mit-python.jpg new file mode 100644 index 0000000..6fd41eb Binary files /dev/null and b/m122/tools-technics/mailing-mit-python.jpg differ diff --git a/m152/auftraege/a/README.md b/m152/auftraege/a/README.md index 6bbbe76..037e2c1 100644 --- a/m152/auftraege/a/README.md +++ b/m152/auftraege/a/README.md @@ -25,7 +25,7 @@ Zeitbedarf: für 1.) - 5.) ca. 45 min (wenn alles gut geht), sonst vielleicht 90 ---- 6.) Holen Sie sich ein HTML5-Template -- https://freehtml5.co +- https://freehtml5.co, https://gettemplates.co ($17) - https://html5up.net - https://webflow.com/free-website-templates - https://nicepage.com/html5-template diff --git a/m326/2a_CRC-Cards/README.md b/m326/2a_CRC-Cards/README.md index 089a140..01c9163 100644 --- a/m326/2a_CRC-Cards/README.md +++ b/m326/2a_CRC-Cards/README.md @@ -2,6 +2,7 @@ [**M326_Tag2_task_defining_requirementsUseCases.pdf**](./M326_Tag2_task_defining_requirementsUseCases.pdf) +[https://echeung.me/crcmaker](https://echeung.me/crcmaker) - [2:49 min, E, YouTube: Using CRC-Cards](https://www.youtube.com/watch?v=Bxgn6qJ-bYY) - [8:59 min, E, YouTube: Class Responsibility Collaboration](https://www.youtube.com/watch?v=mbpeonZUhpU)