mit Visual Basic Script können Sie automatisieren den Prozess der E-Mails an alle Menschen auf Ihrer Mailing-Liste . Mit ein wenig Kreativität können Sie sogar ziehen Sie die Informationen für das Komponieren die E-Mail aus einer Datenbank. Eine gemeinsame Aufgabe , wenn Sie das Skript senden wir Ihnen automatisierte Protokollberichte , können Sie Dateianhänge umfassen. . Anweisungen
1
Öffnen Sie einen Texteditor
2
folgende Einfügen, um die Nachricht zu erstellen :
setzen m = CreateObject (" CDO.Message " )
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/sendusing " ) = 2
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/smtpserver ") =" mail.your.com "
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo /configuration /SMTPAuthenticate " ) = cdoBasic
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/sendusername ") =" YourUserID "
< p > m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/sendpassword ") = " yourpassword "
m.Configuration.Fields.Item ( "http://schemas.microsoft.com /CDO /Konfiguration /SMTPServerPort " ) = 25
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/smtpusessl " ) = False
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout " ) = 60
m.Configuration.Fields.Update
< p> m.to = " recipient@sever.com "
m.from = " me@me.com "
m.subject = "Test"
m . TextBody = " Bitte lesen Sie diese mehrere Nachricht mehrere Anlagen , wiederholen Sie einfach den Befehl add Befestigung . müssen Sie die Konfiguration Felder zu aktualisieren , um die Daten für Ihre Mail-Server -Einstellungen anzupassen. Zum Beispiel, wenn Sie Google Mail verwenden , dann wird Ihre SMTP-Server wäre smtp.gmail.com und Ihren Benutzernamen und Ihr vergessen würde der Benutzername und das Passwort für Ihr Google Mail-Konto sein .
3
Speichern Sie Ihre Arbeit . können Sie das Skript durch Doppelklick ausführen .