Använda Visual Basic Script , kan du automatisera processen för att skicka e-post till alla personer på din e-postlista . Med lite kreativitet kan du dra även informationen för att komponera e-post från en databas . En gemensam uppgift , om du använder skript för att skicka automatiska loggar rapporter , kanske du vill ta med bilagor . . Instruktioner
1
Öppna en textredigerare
2
Klistra in följande för att skapa meddelandet :
satt m = CreateObject ( " CDO.Message " ) katalog
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/sendusing " ) = 2 Review
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/smtpserver " ) = " mail.your.com "
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/CDO /konfiguration /Nycklarna SMTPAuthenticate " ) = cdoBasic
m.Configuration.Fields.Item ( " http://schemas.microsoft.com/cdo/configuration/sendusername " ) = " youruserid "
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
m.to = " [email protected] "
m.from = " [email protected] "
m.subject = " Test "
m . textbody = " Vänligen se dessa multipla Skicka flera bilagor , helt enkelt upprepa add fäste kommandot . Du måste uppdatera konfigurationsfält att spegla data för dina postservrar inställningar . Till exempel, om du använder Gmail , då din SMTP -server skulle vara smtp.gmail.com och ditt användarnamn och lösenord skulle vara användarnamn och lösenord för ditt Gmail-konto .
3
Spara ditt arbete . Du kan köra skriptet genom att dubbelklicka på den .