Metodo route



  • Metodo route
    di Luca050284 (utente non iscritto) data: 09/05/2012

    Salve a tutti,

    potete darmi una mano?non riesco a far funzionare questo (errore 1004)


    grazie

    saluti
     
    Sub Invia_email()
    
    Set OutApp = CreateObject("Outlook.Application")
    
    ActiveWorkbook.HasRoutingSlip = True
     
     With Workbook.RoutingSlip
     .Delivery = xlOneAfterAnother
     .Recipients = "masettiluca@hotmail.it"
     .Subject = "Here is BOOK1.XLS"
     .Message = "Here is the workbook. What do you think?"
     End With
     ActiveWorkbook.Route
    
     End Sub