Jump to content

Max execution time when running a cron


Go to solution Solved by fastsol,

Recommended Posts

I want to run a cron job that will be sending out up to 100 or so emails at one time based on info gathered from the database.  I am wondering if I will need to ini_set a higher script execution time limit to make sure all the emails are sent.

Link to comment
https://forums.phpfreaks.com/topic/286116-max-execution-time-when-running-a-cron/
Share on other sites

You can completely disable the timelimit by calling set_time_limit(0).

 

Rather than disable it, some recommend you just pick something reasonable and refresh it in a loop. Calling set_time_limit restarts the timer at zero so if you wrote something like this:

while (true){
  set_time_limit(5);
  doSomething();
}
so long as doSomething() executed in less than 5 seconds the script would run indefinitely. Only if something caused it to run longer would the script be killed.

After thinking about it some more, I think I will que the emails in the db and then run the send script a few times during the day in smaller amounts of emails to send.  What's it matter how often it runs anyway since the cron is doing it for me.

What about this?

For the test, I'm going to use sakila database with customer table with 599 fake emails, and swiftmailer as default php mail library.

So, to retrieve, sorting and send all e-mails I've written the following:

e_list.php

<?php 
  
  $username = 'lxc';

  $password = 'password';

  $dbh = new PDO('mysql:dbname=sakila;host=::1;charset=utf8', $username, $password);
  
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  
$stmt = $dbh->prepare("SELECT email, CONCAT( first_name,' ',last_name) as names FROM sakila.customer WHERE 1");

$stmt->execute();

$cust_info = array();

$count_rows = $stmt->rowCount(); 

$part = floor($count_rows / 10); 

while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
    $cust_info[$row['email']] = $row['names'];
}

function partition( $list, $p ) {
    $listlen = count( $list);
    $partlen = floor( $listlen / $p );
    $partrem = $listlen % $p;
    $partition = array();
    $mark = 0;
    for ($px = 0; $px < $p; $px++) {
        $incr = ($px < $partrem) ? $partlen + 1 : $partlen;
        $partition[$px]= array_slice($list, $mark, $incr);
        $mark += $incr;
    }
    return $partition;
}

$stmt = null;

// sort emails
$p = partition($cust_info,$part); 

// restart the indexes of the array starting from 1
$emails = array_combine(range(1, count($p)), array_values($p));

Result of the sorting:

Array
(
    [1] => Array
        (
            [[email protected]] => MARY SMITH
            [[email protected]] => PATRICIA JOHNSON
            [[email protected]] => LINDA WILLIAMS
            [[email protected]] => BARBARA JONES
            [[email protected]] => ELIZABETH BROWN
            [[email protected]] => JENNIFER DAVIS
            [[email protected]] => MARIA MILLER
            [[email protected]] => SUSAN WILSON
            [[email protected]] => MARGARET MOORE
            [[email protected]] => DOROTHY TAYLOR
            [[email protected]] => LISA ANDERSON
        )

    [2] => Array
        (
            [[email protected]] => NANCY THOMAS
            [[email protected]] => KAREN JACKSON
            [[email protected]] => BETTY WHITE
            [[email protected]] => HELEN HARRIS
            [[email protected]] => SANDRA MARTIN
            [[email protected]] => DONNA THOMPSON
            [[email protected]] => CAROL GARCIA
            [[email protected]] => RUTH MARTINEZ
            [[email protected]] => SHARON ROBINSON
            [[email protected]] => MICHELLE CLARK
            [[email protected]] => LAURA RODRIGUEZ
        )

    [3] => Array
        (
            [[email protected]] => SARAH LEWIS
            [[email protected]] => KIMBERLY LEE
            [[email protected]] => DEBORAH WALKER
            [[email protected]] => JESSICA HALL
            [[email protected]] => SHIRLEY ALLEN
            [[email protected]] => CYNTHIA YOUNG
            [[email protected]] => ANGELA HERNANDEZ
            [[email protected]] => MELISSA KING
            [[email protected]] => BRENDA WRIGHT
            [[email protected]] => AMY LOPEZ
            [[email protected]] => ANNA HILL
        )

    [4] => Array
        (
            [[email protected]] => REBECCA SCOTT
            [[email protected]] => VIRGINIA GREEN
            [[email protected]] => KATHLEEN ADAMS
            [[email protected]] => PAMELA BAKER
            [[email protected]] => MARTHA GONZALEZ
            [[email protected]] => DEBRA NELSON
            [[email protected]] => AMANDA CARTER
            [[email protected]] => STEPHANIE MITCHELL
            [[email protected]] => CAROLYN PEREZ
            [[email protected]] => CHRISTINE ROBERTS
            [[email protected]] => MARIE TURNER
        )

    [5] => Array
        (
            [[email protected]] => JANET PHILLIPS
            [[email protected]] => CATHERINE CAMPBELL
            [[email protected]] => FRANCES PARKER
            [[email protected]] => ANN EVANS
            [[email protected]] => JOYCE EDWARDS
            [[email protected]] => DIANE COLLINS
            [[email protected]] => ALICE STEWART
            [[email protected]] => JULIE SANCHEZ
            [[email protected]] => HEATHER MORRIS
            [[email protected]] => TERESA ROGERS
            [[email protected]] => DORIS REED
        )

    [6] => Array
        (
            [[email protected]] => GLORIA COOK
            [[email protected]] => EVELYN MORGAN
            [[email protected]] => JEAN BELL
            [[email protected]] => CHERYL MURPHY
            [[email protected]] => MILDRED BAILEY
            [[email protected]] => KATHERINE RIVERA
            [[email protected]] => JOAN COOPER
            [[email protected]] => ASHLEY RICHARDSON
            [[email protected]] => JUDITH COX
            [[email protected]] => ROSE HOWARD
            [[email protected]] => JANICE WARD
        )

    [7] => Array
        (
            [[email protected]] => KELLY TORRES
            [[email protected]] => NICOLE PETERSON
            [[email protected]] => JUDY GRAY
            [[email protected]] => CHRISTINA RAMIREZ
            [[email protected]] => KATHY JAMES
            [[email protected]] => THERESA WATSON
            [[email protected]] => BEVERLY BROOKS
            [[email protected]] => DENISE KELLY
            [[email protected]] => TAMMY SANDERS
            [[email protected]] => IRENE PRICE
            [[email protected]] => JANE BENNETT
        )

    [8] => Array
        (
            [[email protected]] => LORI WOOD
            [[email protected]] => RACHEL BARNES
            [[email protected]] => MARILYN ROSS
            [[email protected]] => ANDREA HENDERSON
            [[email protected]] => KATHRYN COLEMAN
            [[email protected]] => LOUISE JENKINS
            [[email protected]] => SARA PERRY
            [[email protected]] => ANNE POWELL
            [[email protected]] => JACQUELINE LONG
            [[email protected]] => WANDA PATTERSON
            [[email protected]] => BONNIE HUGHES
        )

    [9] => Array
        (
            [[email protected]] => JULIA FLORES
            [[email protected]] => RUBY WASHINGTON
            [[email protected]] => LOIS BUTLER
            [[email protected]] => TINA SIMMONS
            [[email protected]] => PHYLLIS FOSTER
            [[email protected]] => NORMA GONZALES
            [[email protected]] => PAULA BRYANT
            [[email protected]] => DIANA ALEXANDER
            [[email protected]] => ANNIE RUSSELL
            [[email protected]] => LILLIAN GRIFFIN
            [[email protected]] => EMILY DIAZ
        )

    [10] => Array
        (
            [[email protected]] => ROBIN HAYES
            [[email protected]] => PEGGY MYERS
            [[email protected]] => CRYSTAL FORD
            [[email protected]] => GLADYS HAMILTON
            [[email protected]] => RITA GRAHAM
            [[email protected]] => DAWN SULLIVAN
            [[email protected]] => CONNIE WALLACE
            [[email protected]] => FLORENCE WOODS
            [[email protected]] => TRACY COLE
            [[email protected]] => EDNA WEST
        )

    [11] => Array
        (
            [[email protected]] => TIFFANY JORDAN
            [[email protected]] => CARMEN OWENS
            [[email protected]] => ROSA REYNOLDS
            [[email protected]] => CINDY FISHER
            [[email protected]] => GRACE ELLIS
            [[email protected]] => WENDY HARRISON
            [[email protected]] => VICTORIA GIBSON
            [[email protected]] => EDITH MCDONALD
            [[email protected]] => KIM CRUZ
            [[email protected]] => SHERRY MARSHALL
        )

    [12] => Array
        (
            [[email protected]] => SYLVIA ORTIZ
            [[email protected]] => JOSEPHINE GOMEZ
            [[email protected]] => THELMA MURRAY
            [[email protected]] => SHANNON FREEMAN
            [[email protected]] => SHEILA WELLS
            [[email protected]] => ETHEL WEBB
            [[email protected]] => ELLEN SIMPSON
            [[email protected]] => ELAINE STEVENS
            [[email protected]] => MARJORIE TUCKER
            [[email protected]] => CARRIE PORTER
        )

    [13] => Array
        (
            [[email protected]] => CHARLOTTE HUNTER
            [[email protected]] => MONICA HICKS
            [[email protected]] => ESTHER CRAWFORD
            [[email protected]] => PAULINE HENRY
            [[email protected]] => EMMA BOYD
            [[email protected]] => JUANITA MASON
            [[email protected]] => ANITA MORALES
            [[email protected]] => RHONDA KENNEDY
            [[email protected]] => HAZEL WARREN
            [[email protected]] => AMBER DIXON
        )

    [14] => Array
        (
            [[email protected]] => EVA RAMOS
            [[email protected]] => DEBBIE REYES
            [[email protected]] => APRIL BURNS
            [[email protected]] => LESLIE GORDON
            [[email protected]] => CLARA SHAW
            [[email protected]] => LUCILLE HOLMES
            [[email protected]] => JAMIE RICE
            [[email protected]] => JOANNE ROBERTSON
            [[email protected]] => ELEANOR HUNT
            [[email protected]] => VALERIE BLACK
        )

    [15] => Array
        (
            [[email protected]] => DANIELLE DANIELS
            [[email protected]] => MEGAN PALMER
            [[email protected]] => ALICIA MILLS
            [[email protected]] => SUZANNE NICHOLS
            [[email protected]] => MICHELE GRANT
            [[email protected]] => GAIL KNIGHT
            [[email protected]] => BERTHA FERGUSON
            [[email protected]] => DARLENE ROSE
            [[email protected]] => VERONICA STONE
            [[email protected]] => JILL HAWKINS
        )

    [16] => Array
        (
            [[email protected]] => ERIN DUNN
            [[email protected]] => GERALDINE PERKINS
            [[email protected]] => LAUREN HUDSON
            [[email protected]] => CATHY SPENCER
            [[email protected]] => JOANN GARDNER
            [[email protected]] => LORRAINE STEPHENS
            [[email protected]] => LYNN PAYNE
            [[email protected]] => SALLY PIERCE
            [[email protected]] => REGINA BERRY
            [[email protected]] => ERICA MATTHEWS
        )

    [17] => Array
        (
            [[email protected]] => BEATRICE ARNOLD
            [[email protected]] => DOLORES WAGNER
            [[email protected]] => BERNICE WILLIS
            [[email protected]] => AUDREY RAY
            [[email protected]] => YVONNE WATKINS
            [[email protected]] => ANNETTE OLSON
            [[email protected]] => JUNE CARROLL
            [[email protected]] => SAMANTHA DUNCAN
            [[email protected]] => MARION SNYDER
            [[email protected]] => DANA HART
        )

    [18] => Array
        (
            [[email protected]] => STACY CUNNINGHAM
            [[email protected]] => ANA BRADLEY
            [[email protected]] => RENEE LANE
            [[email protected]] => IDA ANDREWS
            [[email protected]] => VIVIAN RUIZ
            [[email protected]] => ROBERTA HARPER
            [[email protected]] => HOLLY FOX
            [[email protected]] => BRITTANY RILEY
            [[email protected]] => MELANIE ARMSTRONG
            [[email protected]] => LORETTA CARPENTER
        )

    [19] => Array
        (
            [[email protected]] => YOLANDA WEAVER
            [[email protected]] => JEANETTE GREENE
            [[email protected]] => LAURIE LAWRENCE
            [[email protected]] => KATIE ELLIOTT
            [[email protected]] => KRISTEN CHAVEZ
            [[email protected]] => VANESSA SIMS
            [[email protected]] => ALMA AUSTIN
            [[email protected]] => SUE PETERS
            [[email protected]] => ELSIE KELLEY
            [[email protected]] => BETH FRANKLIN
        )

    [20] => Array
        (
            [[email protected]] => JEANNE LAWSON
            [[email protected]] => VICKI FIELDS
            [[email protected]] => CARLA GUTIERREZ
            [[email protected]] => TARA RYAN
            [[email protected]] => ROSEMARY SCHMIDT
            [[email protected]] => EILEEN CARR
            [[email protected]] => TERRI VASQUEZ
            [[email protected]] => GERTRUDE CASTILLO
            [[email protected]] => LUCY WHEELER
            [[email protected]] => TONYA CHAPMAN
        )

    [21] => Array
        (
            [[email protected]] => ELLA OLIVER
            [[email protected]] => STACEY MONTGOMERY
            [[email protected]] => WILMA RICHARDS
            [[email protected]] => GINA WILLIAMSON
            [[email protected]] => KRISTIN JOHNSTON
            [[email protected]] => JESSIE BANKS
            [[email protected]] => NATALIE MEYER
            [[email protected]] => AGNES BISHOP
            [[email protected]] => VERA MCCOY
            [[email protected]] => WILLIE HOWELL
        )

    [22] => Array
        (
            [[email protected]] => CHARLENE ALVAREZ
            [[email protected]] => BESSIE MORRISON
            [[email protected]] => DELORES HANSEN
            [[email protected]] => MELINDA FERNANDEZ
            [[email protected]] => PEARL GARZA
            [[email protected]] => ARLENE HARVEY
            [[email protected]] => MAUREEN LITTLE
            [[email protected]] => COLLEEN BURTON
            [[email protected]] => ALLISON STANLEY
            [[email protected]] => TAMARA NGUYEN
        )

    [23] => Array
        (
            [[email protected]] => JOY GEORGE
            [[email protected]] => GEORGIA JACOBS
            [[email protected]] => CONSTANCE REID
            [[email protected]] => LILLIE KIM
            [[email protected]] => CLAUDIA FULLER
            [[email protected]] => JACKIE LYNCH
            [[email protected]] => MARCIA DEAN
            [[email protected]] => TANYA GILBERT
            [[email protected]] => NELLIE GARRETT
            [[email protected]] => MINNIE ROMERO
        )

    [24] => Array
        (
            [[email protected]] => MARLENE WELCH
            [[email protected]] => HEIDI LARSON
            [[email protected]] => GLENDA FRAZIER
            [[email protected]] => LYDIA BURKE
            [[email protected]] => VIOLA HANSON
            [[email protected]] => COURTNEY DAY
            [[email protected]] => MARIAN MENDOZA
            [[email protected]] => STELLA MORENO
            [[email protected]] => CAROLINE BOWMAN
            [[email protected]] => DORA MEDINA
        )

    [25] => Array
        (
            [[email protected]] => JO FOWLER
            [[email protected]] => VICKIE BREWER
            [[email protected]] => MATTIE HOFFMAN
            [[email protected]] => TERRY CARLSON
            [[email protected]] => MAXINE SILVA
            [[email protected]] => IRMA PEARSON
            [[email protected]] => MABEL HOLLAND
            [[email protected]] => MARSHA DOUGLAS
            [[email protected]] => MYRTLE FLEMING
            [[email protected]] => LENA JENSEN
        )

    [26] => Array
        (
            [[email protected]] => CHRISTY VARGAS
            [[email protected]] => DEANNA BYRD
            [[email protected]] => PATSY DAVIDSON
            [[email protected]] => HILDA HOPKINS
            [[email protected]] => GWENDOLYN MAY
            [[email protected]] => JENNIE TERRY
            [[email protected]] => NORA HERRERA
            [[email protected]] => MARGIE WADE
            [[email protected]] => NINA SOTO
            [[email protected]] => CASSANDRA WALTERS
        )

    [27] => Array
        (
            [[email protected]] => LEAH CURTIS
            [[email protected]] => PENNY NEAL
            [[email protected]] => KAY CALDWELL
            [[email protected]] => PRISCILLA LOWE
            [[email protected]] => NAOMI JENNINGS
            [[email protected]] => CAROLE BARNETT
            [[email protected]] => BRANDY GRAVES
            [[email protected]] => OLGA JIMENEZ
            [[email protected]] => BILLIE HORTON
            [[email protected]] => DIANNE SHELTON
        )

    [28] => Array
        (
            [[email protected]] => TRACEY BARRETT
            [[email protected]] => LEONA OBRIEN
            [[email protected]] => JENNY CASTRO
            [[email protected]] => FELICIA SUTTON
            [[email protected]] => SONIA GREGORY
            [[email protected]] => MIRIAM MCKINNEY
            [[email protected]] => VELMA LUCAS
            [[email protected]] => BECKY MILES
            [[email protected]] => BOBBIE CRAIG
            [[email protected]] => VIOLET RODRIQUEZ
        )

    [29] => Array
        (
            [[email protected]] => KRISTINA CHAMBERS
            [[email protected]] => TONI HOLT
            [[email protected]] => MISTY LAMBERT
            [[email protected]] => MAE FLETCHER
            [[email protected]] => SHELLY WATTS
            [[email protected]] => DAISY BATES
            [[email protected]] => RAMONA HALE
            [[email protected]] => SHERRI RHODES
            [[email protected]] => ERIKA PENA
            [[email protected]] => JAMES GANNON
        )

    [30] => Array
        (
            [[email protected]] => JOHN FARNSWORTH
            [[email protected]] => ROBERT BAUGHMAN
            [[email protected]] => MICHAEL SILVERMAN
            [[email protected]] => WILLIAM SATTERFIELD
            [[email protected]] => DAVID ROYAL
            [[email protected]] => RICHARD MCCRARY
            [[email protected]] => CHARLES KOWALSKI
            [[email protected]] => JOSEPH JOY
            [[email protected]] => THOMAS GRIGSBY
            [[email protected]] => CHRISTOPHER GRECO
        )

    [31] => Array
        (
            [[email protected]] => DANIEL CABRAL
            [[email protected]] => PAUL TROUT
            [[email protected]] => MARK RINEHART
            [[email protected]] => DONALD MAHON
            [[email protected]] => GEORGE LINTON
            [[email protected]] => KENNETH GOODEN
            [[email protected]] => STEVEN CURLEY
            [[email protected]] => EDWARD BAUGH
            [[email protected]] => BRIAN WYMAN
            [[email protected]] => RONALD WEINER
        )

    [32] => Array
        (
            [[email protected]] => ANTHONY SCHWAB
            [[email protected]] => KEVIN SCHULER
            [[email protected]] => JASON MORRISSEY
            [[email protected]] => MATTHEW MAHAN
            [[email protected]] => GARY COY
            [[email protected]] => TIMOTHY BUNN
            [[email protected]] => JOSE ANDREW
            [[email protected]] => LARRY THRASHER
            [[email protected]] => JEFFREY SPEAR
            [[email protected]] => FRANK WAGGONER
        )

    [33] => Array
        (
            [[email protected]] => SCOTT SHELLEY
            [[email protected]] => ERIC ROBERT
            [[email protected]] => STEPHEN QUALLS
            [[email protected]] => ANDREW PURDY
            [[email protected]] => RAYMOND MCWHORTER
            [[email protected]] => GREGORY MAULDIN
            [[email protected]] => JOSHUA MARK
            [[email protected]] => JERRY JORDON
            [[email protected]] => DENNIS GILMAN
            [[email protected]] => WALTER PERRYMAN
        )

    [34] => Array
        (
            [[email protected]] => PATRICK NEWSOM
            [[email protected]] => PETER MENARD
            [[email protected]] => HAROLD MARTINO
            [[email protected]] => DOUGLAS GRAF
            [[email protected]] => HENRY BILLINGSLEY
            [[email protected]] => CARL ARTIS
            [[email protected]] => ARTHUR SIMPKINS
            [[email protected]] => RYAN SALISBURY
            [[email protected]] => ROGER QUINTANILLA
            [[email protected]] => JOE GILLILAND
        )

    [35] => Array
        (
            [[email protected]] => JUAN FRALEY
            [[email protected]] => JACK FOUST
            [[email protected]] => ALBERT CROUSE
            [[email protected]] => JONATHAN SCARBOROUGH
            [[email protected]] => JUSTIN NGO
            [[email protected]] => TERRY GRISSOM
            [[email protected]] => GERALD FULTZ
            [[email protected]] => KEITH RICO
            [[email protected]] => SAMUEL MARLOW
            [[email protected]] => WILLIE MARKHAM
        )

    [36] => Array
        (
            [[email protected]] => RALPH MADRIGAL
            [[email protected]] => LAWRENCE LAWTON
            [[email protected]] => NICHOLAS BARFIELD
            [[email protected]] => ROY WHITING
            [[email protected]] => BENJAMIN VARNEY
            [[email protected]] => BRUCE SCHWARZ
            [[email protected]] => BRANDON HUEY
            [[email protected]] => ADAM GOOCH
            [[email protected]] => HARRY ARCE
            [[email protected]] => FRED WHEAT
        )

    [37] => Array
        (
            [[email protected]] => WAYNE TRUONG
            [[email protected]] => BILLY POULIN
            [[email protected]] => STEVE MACKENZIE
            [[email protected]] => LOUIS LEONE
            [[email protected]] => JEREMY HURTADO
            [[email protected]] => AARON SELBY
            [[email protected]] => RANDY GAITHER
            [[email protected]] => HOWARD FORTNER
            [[email protected]] => EUGENE CULPEPPER
            [[email protected]] => CARLOS COUGHLIN
        )

    [38] => Array
        (
            [[email protected]] => RUSSELL BRINSON
            [[email protected]] => BOBBY BOUDREAU
            [[email protected]] => VICTOR BARKLEY
            [[email protected]] => MARTIN BALES
            [[email protected]] => ERNEST STEPP
            [[email protected]] => PHILLIP HOLM
            [[email protected]] => TODD TAN
            [[email protected]] => JESSE SCHILLING
            [[email protected]] => CRAIG MORRELL
            [[email protected]] => ALAN KAHN
        )

    [39] => Array
        (
            [[email protected]] => SHAWN HEATON
            [[email protected]] => CLARENCE GAMEZ
            [[email protected]] => SEAN DOUGLASS
            [[email protected]] => PHILIP CAUSEY
            [[email protected]] => CHRIS BROTHERS
            [[email protected]] => JOHNNY TURPIN
            [[email protected]] => EARL SHANKS
            [[email protected]] => JIMMY SCHRADER
            [[email protected]] => ANTONIO MEEK
            [[email protected]] => DANNY ISOM
        )

    [40] => Array
        (
            [[email protected]] => BRYAN HARDISON
            [[email protected]] => TONY CARRANZA
            [[email protected]] => LUIS YANEZ
            [[email protected]] => MIKE WAY
            [[email protected]] => STANLEY SCROGGINS
            [[email protected]] => LEONARD SCHOFIELD
            [[email protected]] => NATHAN RUNYON
            [[email protected]] => DALE RATCLIFF
            [[email protected]] => MANUEL MURRELL
            [[email protected]] => RODNEY MOELLER
        )

    [41] => Array
        (
            [[email protected]] => CURTIS IRBY
            [[email protected]] => NORMAN CURRIER
            [[email protected]] => ALLEN BUTTERFIELD
            [[email protected]] => MARVIN YEE
            [[email protected]] => VINCENT RALSTON
            [[email protected]] => GLENN PULLEN
            [[email protected]] => JEFFERY PINSON
            [[email protected]] => TRAVIS ESTEP
            [[email protected]] => JEFF EAST
            [[email protected]] => CHAD CARBONE
        )

    [42] => Array
        (
            [[email protected]] => JACOB LANCE
            [[email protected]] => LEE HAWKS
            [[email protected]] => MELVIN ELLINGTON
            [[email protected]] => ALFRED CASILLAS
            [[email protected]] => KYLE SPURLOCK
            [[email protected]] => FRANCIS SIKES
            [[email protected]] => BRADLEY MOTLEY
            [[email protected]] => JESUS MCCARTNEY
            [[email protected]] => HERBERT KRUGER
            [[email protected]] => FREDERICK ISBELL
        )

    [43] => Array
        (
            [[email protected]] => RAY HOULE
            [[email protected]] => JOEL FRANCISCO
            [[email protected]] => EDWIN BURK
            [[email protected]] => DON BONE
            [[email protected]] => EDDIE TOMLIN
            [[email protected]] => RICKY SHELBY
            [[email protected]] => TROY QUIGLEY
            [[email protected]] => RANDALL NEUMANN
            [[email protected]] => BARRY LOVELACE
            [[email protected]] => ALEXANDER FENNELL
        )

    [44] => Array
        (
            [[email protected]] => BERNARD COLBY
            [[email protected]] => MARIO CHEATHAM
            [[email protected]] => LEROY BUSTAMANTE
            [[email protected]] => FRANCISCO SKIDMORE
            [[email protected]] => MARCUS HIDALGO
            [[email protected]] => MICHEAL FORMAN
            [[email protected]] => THEODORE CULP
            [[email protected]] => CLIFFORD BOWENS
            [[email protected]] => MIGUEL BETANCOURT
            [[email protected]] => OSCAR AQUINO
        )

    [45] => Array
        (
            [[email protected]] => JAY ROBB
            [[email protected]] => JIM REA
            [[email protected]] => TOM MILNER
            [[email protected]] => CALVIN MARTEL
            [[email protected]] => ALEX GRESHAM
            [[email protected]] => JON WILES
            [[email protected]] => RONNIE RICKETTS
            [[email protected]] => BILL GAVIN
            [[email protected]] => LLOYD DOWD
            [[email protected]] => TOMMY COLLAZO
        )

    [46] => Array
        (
            [[email protected]] => LEON BOSTIC
            [[email protected]] => DEREK BLAKELY
            [[email protected]] => WARREN SHERROD
            [[email protected]] => DARRELL POWER
            [[email protected]] => JEROME KENYON
            [[email protected]] => FLOYD GANDY
            [[email protected]] => LEO EBERT
            [[email protected]] => ALVIN DELOACH
            [[email protected]] => TIM CARY
            [[email protected]] => WESLEY BULL
        )

    [47] => Array
        (
            [[email protected]] => GORDON ALLARD
            [[email protected]] => DEAN SAUER
            [[email protected]] => GREG ROBINS
            [[email protected]] => JORGE OLIVARES
            [[email protected]] => DUSTIN GILLETTE
            [[email protected]] => PEDRO CHESTNUT
            [[email protected]] => DERRICK BOURQUE
            [[email protected]] => DAN PAINE
            [[email protected]] => LEWIS LYMAN
            [[email protected]] => ZACHARY HITE
        )

    [48] => Array
        (
            [[email protected]] => COREY HAUSER
            [[email protected]] => HERMAN DEVORE
            [[email protected]] => MAURICE CRAWLEY
            [[email protected]] => VERNON CHAPA
            [[email protected]] => ROBERTO VU
            [[email protected]] => CLYDE TOBIAS
            [[email protected]] => GLEN TALBERT
            [[email protected]] => HECTOR POINDEXTER
            [[email protected]] => SHANE MILLARD
            [[email protected]] => RICARDO MEADOR
        )

    [49] => Array
        (
            [[email protected]] => SAM MCDUFFIE
            [[email protected]] => RICK MATTOX
            [[email protected]] => LESTER KRAUS
            [[email protected]] => BRENT HARKINS
            [[email protected]] => RAMON CHOATE
            [[email protected]] => CHARLIE BESS
            [[email protected]] => TYLER WREN
            [[email protected]] => GILBERT SLEDGE
            [[email protected]] => GENE SANBORN
            [[email protected]] => MARC OUTLAW
        )

    [50] => Array
        (
            [[email protected]] => REGINALD KINDER
            [[email protected]] => RUBEN GEARY
            [[email protected]] => BRETT CORNWELL
            [[email protected]] => ANGEL BARCLAY
            [[email protected]] => NATHANIEL ADAM
            [[email protected]] => RAFAEL ABNEY
            [[email protected]] => LESLIE SEWARD
            [[email protected]] => EDGAR RHOADS
            [[email protected]] => MILTON HOWLAND
            [[email protected]] => RAUL FORTIER
        )

    [51] => Array
        (
            [[email protected]] => BEN EASTER
            [[email protected]] => CHESTER BENNER
            [[email protected]] => CECIL VINES
            [[email protected]] => DUANE TUBBS
            [[email protected]] => FRANKLIN TROUTMAN
            [[email protected]] => ANDRE RAPP
            [[email protected]] => ELMER NOE
            [[email protected]] => BRAD MCCURDY
            [[email protected]] => GABRIEL HARDER
            [[email protected]] => RON DELUCA
        )

    [52] => Array
        (
            [[email protected]] => MITCHELL WESTMORELAND
            [[email protected]] => ROLAND SOUTH
            [[email protected]] => ARNOLD HAVENS
            [[email protected]] => HARVEY GUAJARDO
            [[email protected]] => JARED ELY
            [[email protected]] => ADRIAN CLARY
            [[email protected]] => KARL SEAL
            [[email protected]] => CORY MEEHAN
            [[email protected]] => CLAUDE HERZOG
            [[email protected]] => ERIK GUILLEN
        )

    [53] => Array
        (
            [[email protected]] => DARRYL ASHCRAFT
            [[email protected]] => JAMIE WAUGH
            [[email protected]] => NEIL RENNER
            [[email protected]] => JESSIE MILAM
            [[email protected]] => CHRISTIAN JUNG
            [[email protected]] => JAVIER ELROD
            [[email protected]] => FERNANDO CHURCHILL
            [[email protected]] => CLINTON BUFORD
            [[email protected]] => TED BREAUX
            [[email protected]] => MATHEW BOLIN
        )

    [54] => Array
        (
            [[email protected]] => TYRONE ASHER
            [[email protected]] => DARREN WINDHAM
            [[email protected]] => LONNIE TIRADO
            [[email protected]] => LANCE PEMBERTON
            [[email protected]] => CODY NOLEN
            [[email protected]] => JULIO NOLAND
            [[email protected]] => KELLY KNOTT
            [[email protected]] => KURT EMMONS
            [[email protected]] => ALLAN CORNISH
            [[email protected]] => NELSON CHRISTENSON
        )

    [55] => Array
        (
            [[email protected]] => GUY BROWNLEE
            [[email protected]] => CLAYTON BARBEE
            [[email protected]] => HUGH WALDROP
            [[email protected]] => MAX PITT
            [[email protected]] => DWAYNE OLVERA
            [[email protected]] => DWIGHT LOMBARDI
            [[email protected]] => ARMANDO GRUBER
            [[email protected]] => FELIX GAFFNEY
            [[email protected]] => JIMMIE EGGLESTON
            [[email protected]] => EVERETT BANDA
        )

    [56] => Array
        (
            [[email protected]] => JORDAN ARCHULETA
            [[email protected]] => IAN STILL
            [[email protected]] => WALLACE SLONE
            [[email protected]] => KEN PREWITT
            [[email protected]] => BOB PFEIFFER
            [[email protected]] => JAIME NETTLES
            [[email protected]] => CASEY MENA
            [[email protected]] => ALFREDO MCADAMS
            [[email protected]] => ALBERTO HENNING
            [[email protected]] => DAVE GARDINER
        )

    [57] => Array
        (
            [[email protected]] => IVAN CROMWELL
            [[email protected]] => JOHNNIE CHISHOLM
            [[email protected]] => SIDNEY BURLESON
            [[email protected]] => BYRON BOX
            [[email protected]] => JULIAN VEST
            [[email protected]] => ISAAC OGLESBY
            [[email protected]] => MORRIS MCCARTER
            [[email protected]] => CLIFTON MALCOLM
            [[email protected]] => WILLARD LUMPKIN
            [[email protected]] => DARYL LARUE
        )

    [58] => Array
        (
            [[email protected]] => ROSS GREY
            [[email protected]] => VIRGIL WOFFORD
            [[email protected]] => ANDY VANHORN
            [[email protected]] => MARSHALL THORN
            [[email protected]] => SALVADOR TEEL
            [[email protected]] => PERRY SWAFFORD
            [[email protected]] => KIRK STCLAIR
            [[email protected]] => SERGIO STANFIELD
            [[email protected]] => MARION OCAMPO
            [[email protected]] => TRACY HERRMANN
        )

    [59] => Array
        (
            [[email protected]] => SETH HANNON
            [[email protected]] => KENT ARSENAULT
            [[email protected]] => TERRANCE ROUSH
            [[email protected]] => RENE MCALISTER
            [[email protected]] => EDUARDO HIATT
            [[email protected]] => TERRENCE GUNDERSON
            [[email protected]] => ENRIQUE FORSYTHE
            [[email protected]] => FREDDIE DUGGAN
            [[email protected]] => WADE DELVALLE
            [[email protected]] => AUSTIN CINTRON
        )

)

sendMail.php

<?php

require_once $_SERVER['DOCUMENT_ROOT'] . '/Swift-5.0.3/lib/swift_required.php';

require_once 'e_list.php';

date_default_timezone_set('America/Toronto');

$transport = Swift_SmtpTransport::newInstance();

// Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);

$subject = 'Some subject content';

$body = "<!DOCTYPE html>
 <html>
  <body>
  <p>Some content here.....</p>
  </body>
</html>"; // that's your html content

$message = Swift_Message::newInstance()
        ->setContentType("text/html")
        ->setMaxLineLength(100)
        ->setSubject($subject)
        ->setFrom(array("centos-box@localdomain" => "jazzman"))
        ->setBody($body);
 
// delay the time
$delay = 10000000; // 10 sec
//
// iteration 
$it = count($emails);

$time_start = microtime(true);

while ($it > 0) {

    $message->setTo($emails[$it]);

    usleep($delay);

    $mailer->send($message);
    
    $it--;
}

$time_end = microtime(true);

$time = $time_end - $time_start;

printf("Sent %d messages\n", $count_rows);

echo '<br />'; 

printf("Emails were sent in %d seconds\n", $time);

// don't forget to re-write this script to return an exit() command
// avoiding multiple boots by cron job

// file_put_contents(__FILE__, "<?php exit();");

Result:

 

 

Sent 599 messages
Emails were sent in 593 seconds

Edited by jazzman1
  • Solution

Thanks for all the input and examples.  I have implemented a db que system to gather the list of people to email.  Then another script that sends the emails in chunks of 20 per day, which is all I really need after narrowing down how and what I am actually trying to achieve.  

 

Thanks again, JD

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.