email

PHP Perform Action with Incoming Email

Hi, I'm building a photo sharing website (just testing PHP stuff) and I want users to be able to submit photographs using email. For instance, the website needs to run a script when the users sends an email with an image attachment and text in the body. The image would be uploaded to the server, and a new "photo post" would be created...

Dead.letter email. Same domain name, different mail server

I have a server setup "myserver.com" and I'm trying to send emails from a PHP/Apache application on this server. The host name is set to "myserver.com" and I can send emails to anyone outside of the myserver.com domain. We are using a separate server/service and the problem is when I try to send emails to anyone on the myserver.com dom...

Prevent Email From Being Sent via Applescript

I've got the following AppleScript (below). I'm attempting to confirm the sending of an email. This AppleScript is already successfully hooked up to an "outbox rule" (using Mail Act-On) in Mail.app, and I've verified that it runs when it is supposed to (at the time of sending). The ultimate goal is to pop a dialog to the user, asking if...

Linux development/minimal smtp and pop3 server

I use python based as well as rails applications on ubuntu linux. We have functionalities like register, forgot password, reset password, email alerts etc features based on emails. Since now a days, we go on offline development, we want to run a local smtp & pop3 server to send and receive emails. Emails shall be send via the our web ap...

How to filter mail from apple mail?

We have a program written in c# that goes through emails in outlook 2007 and parses out contact information that may be contained in the body of the email or any attachments. What we've found is that any email we get from apple mail, while having legitimate attachments, may also have other attachments that are not the types of files we ...

Support email format: plain-text or HTML?

I have to send planned support notification emails on system events (service window, alerts, etc). I see that most of such emails I receive from my vendors are in plain text format. I wonder should I to stick to plain text format as well (with accompanied limitations) or provide HTML based one with better visualization? I am aware of...

Generic MIME type for a MIME entity?

Is there such a thing as a generic MIME type for a MIME entity? A MIME entity would be something that consists of a header section, followed by a blank line, followed by a body section (with CRLF line endings) according to RFC 2045/2046. An example could be the following: Header1: Some list Header2: of headers Arbitrary body content ...

How do I add vcardfile in the composer sheet of an iPhone application

in the mail sheet im able to add images but where as im not able to attach vcard file MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; picker.mailComposeDelegate = self; [picker addAttachmentData:ExportVCF mimeType:@"text/x-vcard" fileName:@ "JOHNSMITH.vcf"]; but when i send...

Sending email using java code

is there an easy way to send email from java code ? ...

Email row that has been edited in a gridview

Afternoon all. I have a gridview that offers a line per line 'feedback' column. Upon updating, a nice little message box says "Thanks for the feedback, we'll be in touch...etc, etc" How would I go about grabbing this edited row of the gridview and send this to an email address? Any help greatly appreciated for a c# .net novice! ...

Problem sending mail with Pear in PHP

I have written an email contact form in php. I am using the Pear Mail package to send the email. It works nicely on my development computer, but not on the server. Here is the code: ////////////////////////////////////////////////// // EMAIL OPTIONS ////////////////////////////////////////////////// $to = "[email protected]"; ...

Recommendations for email packages

I want to provide some type of email type functionality to the users of my system. Basically their own web-client inbox and the ability to do peer-to-peer messaging (emailing). I dont see this doing a lot of interaction with outside mail providers, mostly just internal users of the system. Can someone give me pointers as to what open so...

RSS feeds to Email, on the fly

I have a web app that generates RSS feeds. I would like to offer users the ability to subscribe to these RSS feeds by email. I know I can use Feedburner to manually burn my feeds and offer email subscriptions. The problem is I offer hundreds of RSS feeds and don’t want to manually burn a feed just for this one feature. Does anyone kno...

send PHP warnings daily on email or how?

Hi there I'm developing a web-application using PHP which is on tests by some of my friends. What approach do you recommend me to use in order to know what warnings are they getting but without displaying them using ini_set('display_errors', 1); ? Also, the application will run in a intranet in which I'll not have access remotely. I w...

What's the correct email attachment MIME type for a zipped and password protected file?

It's zipped and password protected with 7zip, should the mimetype be "application/7zip", or just "data/binary"? Something else? ...

Android - How to delete an attached file after it sends?

We are starting the e-mail intent of the user's choice (createChooser) and sending a zip file. This zip file is created right before the email sends, but we need to make sure the file is there until the email actually gets sent. Once the e-mail is sent, it would be nice to have this file deleted instead of sitting around eating SD card s...

PHPLIST - Mail sending failed After installation

I am using phplist-2.10.10 , Installation and everyting is ok. I tested both in test mode and test=0 mode. Always i get - "Mail sending failed",Even i added four lists more than 10 members,two templates. I think the problem is with "SMTP authentication" What should i edit in "SMTP host and user,password" - in conifg. My server i...

Android: Intent.ACTION_SEND with EXTRA_STREAM doesn't attach any image when choosing Gmail app on htc Hero.

On the Emulator with a default mail-app all works fine. But I have no attach when I'am receiving a mail which I've sent from my Hero using a Gmail app. The default Mail app on the hero works fine. How can I make this code works with Gmail app on Hero? You can see the code below. private void startSendIntent() { Bitmap bitm...

Send invitation emails on post_save or all at once in django view?

There's a requirement in a web app I'm building about the possibility of the user sending join invitations to his friends. These invitations are stored in the database through the Invitation model. The user can send multiple invitations at once. What do you think is more appropriate: sending all emails at once in the back end view or se...

how would I go about finding the longest mailing city name in America?

The longest city name I was able to find (that had a Zip code) was "La Canada Flintridge" which is in CA. I found that haphazardly via google. For testing our mailing addresses, I'd like to get a definite "this is the longest city name you could possibly mail to" out of a USPS database. How would I go about finding this information a) ...