Results 1 to 5 of 5

Thread: [Solita mia richiesta assurda] Mandare email ogni N minuti

  1. #1
    Chief Petty Officer Bass's Avatar
    Join Date
    Apr 2004
    Location
    Altopascio (LU)
    Posts
    1.373

    Default [Solita mia richiesta assurda] Mandare email ogni N minuti

    Allora il problema è questo: avrei bisogno di un programma che mi faccia impostare N email da mandare in LOOP ogni tot minuti...idee?

    P.S: non è assolutamente per fare spam in giro si tratta di autonotificarsi varie cose

  2. #2
    Lieutenant Junior Grade Eltarion's Avatar
    Join Date
    Dec 2004
    Location
    Venaria
    Posts
    4.085

    Default

    se vuoi un sw esterno cerca E-mail Scheduler su google.

    Se lo vuoi fare da outlook:

    1. First find options in your email for Preferences In Netscape it is under Options. You can search in your help to find where it is in your email provider.

    2. Now Click on Auto reply or Auto response

    3. Click Yes or Turn on to enable the automatic emails.

    4. Fill in the dates you want the automatic email to be activated. In this you have to enter the dates you want it to be in effect.

    5. Specify a subject which you want to send it to the sender.

    6. Now Type a message in the box that you want people to see. You want the message to say something like this, "I am on holiday." You may also need to select where you want your mail saved; usually this would be your inbox.

    7. Choose "Update" or "Save" or the box that your email provider needs you to check in order to activate your automatic outgoing email.
    Realm Of Trollers
    while ( ! ( succeed = try() ) );
    Spoiler

  3. #3
    Lieutenant Commander Rayvaughan's Avatar
    Join Date
    Mar 2005
    Location
    45.663989,8.783906
    Posts
    17.274

    Default

    se non trovi niente su google se vuoi ti faccio uno scriptino, ne uno già pronto che funziona usando un account di gmail come sender

  4. #4
    Lieutenant Junior Grade Eltarion's Avatar
    Join Date
    Dec 2004
    Location
    Venaria
    Posts
    4.085

    Default

    io te lo faccio più bello con l'interfaccia grafica e tutto configurabile prrrrrrrrrrrrrrrrrrrrrrrrrrr
    Realm Of Trollers
    while ( ! ( succeed = try() ) );
    Spoiler

  5. #5
    Chief Petty Officer
    Join Date
    Jan 2004
    Location
    Trento
    Posts
    1.127

    Default

    Io lo faccio e basta.


    ' Configurazioni per email
    smtpserver = "smtp.gmail.com"
    sendusername = "INDIRIZZO@gmail.com"
    sendpassword = "PASSWORD"
    MailDestinat = "MAIL DESTINATARIO"
    DescMittente = "DESCRIZIONE MITTENTE <INDIRIZZOMITTENTE@EMAIL.ORG>"
    PortaSMTP = 465
    AutenSMTP = 1

    ' Main
    InviaMail()


    '-----------------------------------------------------------------------
    ' Invia la mail da un indirizzo creato ad hoc
    '-----------------------------------------------------------------------
    Sub InviaMail()

    Set iMsg = CreateObject("CDO.Message")
    Set iConf = CreateObject("CDO.Configuration")
    Set Flds = iConf.Fields

    ' send one copy with Google SMTP server (with autentication)
    schema = "http://schemas.microsoft.com/cdo/configuration/"
    Flds.Item(schema & "sendusing") = 2
    Flds.Item(schema & "smtpserver") = smtpserver
    Flds.Item(schema & "smtpserverport") = PortaSMTP
    Flds.Item(schema & "smtpauthenticate") = AutenSMTP
    Flds.Item(schema & "sendusername") = sendusername
    Flds.Item(schema & "sendpassword") = sendpassword
    Flds.Item(schema & "smtpusessl") = 1
    Flds.Update

    With iMsg
    .To = MailDestinat
    .From = DescMittente
    .Subject = "oggetto della mail"
    .TextBody = sLogMessage
    .Sender = "Descrizione Sender"
    .Organization = "Descrizione organizzazione"
    .ReplyTo = sendusername
    If (fso.FileExists(sPathLog)) Then
    .AddAttachment sPathLog
    End If
    Set .Configuration = iConf
    SendEmailGmail = .Send
    End With

    set iMsg = nothing
    set iConf = nothing
    set Flds = nothing

    End Sub


    Jeff
    "I'm not a stranger, I'm just a friend you haven't met yet"
    "il bello degli ingegneri è che hanno sempre una dote non sfruttata che un’altra parte di mondo avrebbe usato per guadagnarci i milioni. L’ingegnere no, fa calcoli. Fenomenale."
    "This program had an unexpected end. What I have to do? [R]etry, [I]gnor or [C]ancel?" "C[a]re a saw"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
[Output: 56.54 Kb. compressed to 48.30 Kb. by saving 8.24 Kb. (14.57%)]