0
votes
4answers
31 views

Php Email Mysql Fetch Array

I have this script to send an email containing information from my database. The user can have 1+ items in the database with it's location. So when I empty the rows that match the user the amount of ...
-3
votes
0answers
28 views

how to email CSV with PHP [duplicate]

I am trying to email a CSV file with data extracted from a database. I feel like I am very close but still cant get it right. I can get an email to send but I cant get the CSV attachment with it. ...
-2
votes
1answer
54 views

my CSV attachment is empty! PHP [duplicate]

Im trying to take data from the database and display it in a CSV file which is both downloadable and emailed to someone. I have managed to get the downloadable file working and it displays all of the ...
-1
votes
1answer
36 views

PHP attachment in email is empty

Im trying to take data from the database and display it in a CSV file which is both downloadable and emailed to someone. I have managed to get the downloadable file working and it displays all of the ...
1
vote
2answers
28 views

Why can't I use data after inserting to database with PHP

Problem: I can't get the email value after inserting into the database. EDITED: Fixed: my problem were $to = $_POST['$email']; gave wrong value to it. it should be $to = $_POST['email'];. Problem ...
-3
votes
1answer
46 views

How to properly manage the sending of so many different bulk e-mails to the entire user base? [closed]

One of my PHP/MySQL sites is a social network and I need to send many different e-mails, including: 1) Event-based: E-mails sent when a specific action occurs on a user's account to notify them about ...
0
votes
1answer
17 views

How can I batch search a MySQL5 database?

I have a MySQL database on my web host holding a database of users. Within that database I store the email addresses of all customers. I have a customer list and a marketing list. I send out quarterly ...
1
vote
3answers
36 views

Android SQL databse Error while creating

I've made an E- Mail client for my Android Phone, and now I want to save the E- Mails in a SQLite database. But if I want to fill the Database only with test data, I this Error: ...
0
votes
0answers
20 views

Updating column value after executing SendNotifyEmail()

I have the following code that runs a query and if the results matches the condition, it will send out an email. However, I need to update the selected column value (column sent) of each row to '1' ...
0
votes
2answers
36 views

How to trigger one mail for multiple errors

I have an MYSQL table as below and it logs database error if any occurred during the program execution. This part works fine. Now I'm planning to extend the functionality by triggering a mail if a ...
0
votes
0answers
29 views

Availability checker email not working

I have some ajax code that sends my e-mail input field to the server where it checks if the e-mail exists in the database. However it is not giving any response back. HTML <input type="text" ...
0
votes
2answers
43 views

PHP won't grab email addresses from MySQL database to display in html doc

I have a weird question. Is there any reason I can't display an email address I polled from a MySQL database? Polling the database: $AE_item = mysqli_query($dblink, 'SELECT AEmail FROM heac2013 ...
0
votes
1answer
58 views

How to (quickly) search through a long text field for a certain string (field is up to 500 chars long)

I have a field, called 'message' and it can hold a string of up to 500 characters in length. It's basically for an in-site inbox system. A user has a capacity of 250 messages in their inbox. If a ...
0
votes
0answers
62 views

Correctly distinguish UTF-8 email addresses in MySQL

What is the proper proper MySQL collation for storing email addresses? I understand that email addresses can be UTF-8. However, if I want to compare the input email with the email in database, how ...
0
votes
1answer
36 views

Outlook headers showing in Gibberish

I am working on a disposable mail service.. English works great always.. I fixed the encoding issues and now whenever a mail gets sent from a webmail service in whatever language it displays correct ...
0
votes
1answer
51 views

Recursively send e-mail while updating sql table

I have the following query : UPDATE users AS t LEFT JOIN ( SELECT user FROM facebook, users WHERE facebook.user = users.id ...
0
votes
3answers
68 views

python run some code before running another

I am very new to python programming, please go easy on me! I am querying my MySQL database and writing output to a file and sending an email of the results. However the email is being sent before ...
0
votes
3answers
77 views

Sending a confirmation email to users

I'm trying to send an email with a confirmation code to users when they sign up to my site. The email is sending fine, but when i put in the full length URL, the mail does not send Here you can see ...
0
votes
0answers
75 views

sqlite3 query to php to create csv as an email attachment

I need to email the results of a sqlite3 query as a .csv attachment. As I have been researching this, it appears I need to do the following: 1. Using sqlite query on local db (iphone app), get data ...
0
votes
1answer
146 views

save textarea into database and send email keeping the text area format

through cakephp, I save a text area which will be used as an email message into a database. I can save it correctly, but when I tried to pull the data from database, and send an email using that data, ...
-2
votes
1answer
34 views

PHP MYSQL How can i order my results by user and mail them the task associated with them [closed]

I have been programming a project task management system for my work since they did not like any of the ones you can buy. One of the features they would like is under each project, a button that the ...
7
votes
3answers
371 views

php script cron job after 2 weeks send reminder message to specific email address

Ok, I have a php script that sends a random code to an e-mail address which the user entered. I need to make that after 2 weeks the user will get a reminder message to the same e-mail address. This ...
0
votes
0answers
48 views

email complete form with mysql data to mysql email adres

Oke i got a form that has 2 pages. Page 1 select a domainname through selectbox with all the domainnames in mysql database. Page 2 the form retrieves all values inserts them in mailmessage and sent ...
0
votes
0answers
58 views

Send Welcome Email PHP

Currently I have a simple PHP script(s) that accept the users email address and write it to a MySQL database. The code below is all working fine. How can I go about adding a function to email the new ...
0
votes
3answers
208 views

Sending multiple e-mails from PHP-script

I have this issue. I have made a signup formular (with a simple backend/controlpanel) in PHP. Travellers go to a page, where they sign up (name, phone-number, e-mail, etc.). Then the signup is stored ...
0
votes
1answer
48 views

How to insert mail addresses from database to mail sending script

Is there a possible way, to insert data from table to mail sending script? I have made this simple script, but it doesnt work. How to mix these 2 codes? $result = mysql_query("SELECT * FROM tablename ...
0
votes
1answer
158 views

send mail based on today date + 3 months against sql date not working

I' currently working on a scheduled task where task scheduler will run the file daily to pick up expiry date 3 months from now and send email to receipient. But at this point of time, I can't seems to ...
0
votes
1answer
73 views

PHP Mailing data from SQL Tables

I'm no php/mysql expert, but I can usually get things to work with some research and trial, but this one I can't seem to get to work like I want... I run a classifieds website and I plan to setup a ...
1
vote
2answers
42 views

Php Email Form Requesting Information

I want to send an email to someone that clicks the link having the information on them from my database. So they put in their username , password, and email and get the 'Item' and 'Aisle' sent to ...
-2
votes
1answer
195 views

Sending email to recipients with specific field from table of MySQL database using PHP? [closed]

I am building a web-platform where visitors can ask questions to professionals which are divided into several different categories. I have the following tables : - 'questions' (containing the ...
-2
votes
1answer
125 views

PHP automatic mail sending [closed]

How can I generate automatic mail sending logic using PHP at the end of the month in an application?
0
votes
0answers
55 views

Procmail, Plancake, and MySQL working together

I've got a script running when a certain email address receives an email, procmail pipes to a PHP script, which is then parsed by Plancake, not many problems there. I've got an if statement on ...
-3
votes
1answer
48 views

simple sql count output in an email? [closed]

I'm writing an automated email that would count a specific number of rows in the mysql database every day for 4 different sql queries. I want it to simply output that number into an email. I already ...
0
votes
1answer
137 views

Cron Job Changing PHP Email Script Output

I have an odd issue with a cron job I setup yesterday. I have the following CronJob script running: 0 7 * * * php -q /wocs/email.php This is pointed to a email script that I've placed below. The ...
-5
votes
3answers
100 views

Send Mail in PHP [closed]

Automatically send the user an e-mail to the payment of the remaining 1 day. for example you have to pay tomorrow. Personal data, the last payment date in the database.
0
votes
4answers
87 views

Collect data from email message

I want to collect data from email to mysql database using php. If some one is sent a mail to their mail account to my mail id. I want that mail information to store in my database. for further ...
0
votes
2answers
312 views

vb.net mysql compare value of textbox to single value in table's column

I have a registration form that I am using to register new user. No problem creating the username (email) and password and inserting it mysql DB. I am however wondering how would I compare the value ...
0
votes
1answer
79 views

Save Email Response in Database

I have an application that works this way. I have a users table in mysql with user id and all data This is what happens: a) A user signed up to my site(A) goes to another website(B) and answers some ...
-2
votes
1answer
734 views

How to send mysql data to email after submitting the form by customer?

After customer filling the form, the form data will be send to mysql, and an email will sent to me with only the last form data that customer submitted. All is working, but only the problem is in the ...
4
votes
2answers
385 views

Notification system (email, social media)

I'm currently writing a small internal social media platform for the company I'm working with, nothing big, approx. 40,000+ users. It is basically something like Facebook or Google+ but with way less ...
-1
votes
1answer
179 views

Automated import csv - ftp or email? [closed]

My primary question: is there a reason to choose one over the other as a file location to automate update of MySQL - FTP or email? I will have a small csv file (1 line) and a couple image files that ...
1
vote
1answer
56 views

Storing lots of emails (including body) in a database?

I need to store let's say 1000 emails everyday, these emails need to belong to a specific user but also be searchable to everyone. Can MySQL do this? Will it slow down too much? Do I need to use ...
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 ...
1
vote
1answer
277 views

Php Confirmation email does not send

I am trying to make a user registration and email confirmation page in php. This is the code to register the user, and to send a confirmation email. Everything runs fine, and it registers the user ...
-1
votes
1answer
47 views

How can i find the presence of email address in whole database tables in mysql

I have 1GB mysql database. This is my company database and i have to re-factor the whole site and database. I have changed the email address in user table but there are still some tables where email ...
5
votes
3answers
90 views

How can I make sure that I don't send any email to customers from testing site in php

I have to make the copy of my existing site for testing purposes at home. I have got the permission from the company. But in the database I have the more than 10,000 customer records with email. I ...
-2
votes
3answers
50 views

How do you email users that are in a database

I have a database that stores email addresses of the people who sign up for my email list. But now I need to know how to send mass emails without having to copy each individual email address from my ...
2
votes
2answers
115 views

How to affect a PHP program / mysql database from an email response

I am trying to work out how to do something. It must be possible - I've seen something similar done in multiple systems (Twitter, facebook etc.) The basic thing I want to do is - someone leaves a ...
1
vote
2answers
114 views

Simple PHP MySQL message client

I am trying to create a simple PHP MySQL driven message client. So far I have two tables: users which holds information about each person registered on the site. userID, firstName, lastName etc. ...
0
votes
3answers
95 views

php email edit interface and save method

I've created a simple information system which, among other thins, sends automatic html emails. The body of this emails is defined by me within the php code, where it is saved, and the automatic ...

1 2 3 4 5 6