0
votes
1answer
58 views

PHP/ MySQL Database Backup Script Not Working Correctly

This is my script: <?php ini_set('display_errors',1); ini_set('display_startup_errors',1); error_reporting(-1); backup_tables('localhost','xxxxx','xxxxx','xxxxx'); /* backup the db OR just a ...
3
votes
2answers
51 views

PHP: view unsuccessful emails

I'm trying to figure out how to display a list of unsuccessful emails sent and a way to test it out. I can display a list of the emails that were sent, but I'm unsure on how to retrieve the list of ...
0
votes
3answers
92 views

Send an email using php with mysql data included

I'm trying to send a list of recent entries into a mysql table via email once a week using cron jobs. Typically to call the list of recent entries I use this: $result = mysql_query("SELECT * FROM ...
0
votes
2answers
237 views

how to send multiple email using php

I have a button that when pressed, it will email updates on the emails that are in the database. This is my code. I also got this from a forum but i don't know what's wrong that it don't get the ...
0
votes
2answers
69 views

Send email to email submitted in a php form

I would appreciate if someone could point in the right direction when it comes to mail sending with php. I have this contest form http://www.beogradstore.com/mn/contest/main-contest/ and I would like ...
0
votes
2answers
262 views

php mail function multiple emails and mysql_fetch_array

Yes I am very beginner in coding. So what I am doing is , First I get email address (from db) on which a user want to receive an email just like $quiery = mysql_query("Select * FROM receivers WHERE ...
1
vote
3answers
275 views

Dump SQL as plain text using PHP

Basically what I need to do is dump a SQL database in plain text using PHP. Just like phpMyAdmin does when you choose not to get a file while exporting. This way I can send it via mail and reinsert ...
0
votes
2answers
160 views

Phpmailer dropping name value on html emails, but working with plain text?

I am using phpmailer to send out newsletters, It seems to work out and sends out plain text emails ok, but for some reason when sending html emails drops the persons name, where as plain text works ...
6
votes
5answers
3k views

sending +-200 emails using php mail() function in a loop

Note: It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very ...