i heared with php you can make program which you can send many emails to inbox,,i need a inbox mailer which it available send many email to inbox folder i need it for my Eshop..any one can do it? if yes PM me!
PHP has an in built function to send mail, mail() FROM; http://www.w3schools.com/PHP/func_mail_mail.asp <?php $txt = "First line of text\nSecond line of text";// Use wordwrap() if lines are longer than 70 characters $txt = wordwrap($txt,70);// Send email mail("somebody@example.com","My subject",$txt); ?> PHP: