jordanaustin
asked on
How to import email messages into MySQL
Hello,
I'm not 100% sure this is possible but I'll throw it out there in hopes that it is.
I have reports that get sent to me weekly with various data that needs to be placed into a MySQL database. What I am interested in doing is having some type of script pull these email messages from the pop server and place the data into the MySQL database.
If anyone has any idea how to do this I'd be very thankful, as it would save me massive work of retyping all the data.
Thanks!
-Jordan
I'm not 100% sure this is possible but I'll throw it out there in hopes that it is.
I have reports that get sent to me weekly with various data that needs to be placed into a MySQL database. What I am interested in doing is having some type of script pull these email messages from the pop server and place the data into the MySQL database.
If anyone has any idea how to do this I'd be very thankful, as it would save me massive work of retyping all the data.
Thanks!
-Jordan
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
You can save the files into text/csv format and load them into MySQL using LOAD DATA INFILE MySQL database command.
ASKER
Thanks again!