arduino processing

can any one help me please im tryng to send an email threw processing and arduino can any one tell me what to do

Without external hardware, the Arduino can not send e-mail. I'm not sure ab out Processing, but I doubt that it can send e-mail either.

What external hardware do you have? What conditions determine when the e-mail gets sent? Is the Arduino or the Processing application supposed to send the e-mail.

What code you you have for the Arduino? For the Processing application?

can you send email to any were with an enthernet sheild

can you send email to any were with an enthernet sheild

You can do a GET request with an ethernet shield. If the application that process the request knows how to send e-mail, then yes.

client.println("GET /email.php?to="Joe"&sub="Testing"&msg="Hey, it works!"");

Then, it is up to the email.php script to extract the to, sub, and msg values and send the e-mail.