email

How to manage answers directly on email notifications

Hi, I would like to know what's the best way to manage answers to email notifications. eg. The user receive an email notification, and instead of having to click on a link to go on the website and answer it he could directly reply to the email. ...

Display Email Ruby on Rails

I want to store emails into a database and then have them displayed properly in Ruby on Rails to the user (ideally with a nicely formatted, collapsible header, attachment support, etc). Is there already a good way to do this? Right now, I store the emails to the database as a text, but I am struggling with a good way to display them to...

PHP: Can we build a web application to send email from localhost, like ThunderBirds, OutLook.?

Hi All I don't know whether or not it's a good question :( But my intention is to know if it is possible to to build an email client application like Thunderbird or OutLook . And can we able to configure/create a Web Application in PHP? Please let me know your thoughts! Thanks in advance!!! ...

Postfix API/Lookup tables for sent messages information

Currently it seems common practice to parse Postfix log files in order to determine if a message has been sent. Is there an API for Postfix or a look up table in it that yields this information in a manner quicker than parsing (rather lengthy) log files? ...

PHP: Emailing HTML Body of PHP Template file

I'm currently using PHP's mail() function to email the HTML Body of another PHP file using concatenation. This is currently working fine, however, I would prefer the script to simply get the parsed HTML Body rather than using the concatenation method. I've read a few incomplete forum posts regarding using fopen() and fread() but had no...

Facebook Connect Email hash function for vb.net

Does anyone have a working class or function to create the hashed email that is sent to facebook to register email addresses with connect.registerUsers? ...

short version of jsp mail?

Hey guys. I'm searching for an "one-liner" for mailing within jsp. I just wanna send the values of 5 parameters to the webmasters mail-address. Any ideas for a short solution? ...

PHP mail() attachment is corrupt

I have been struggling with trying to send an email with an attachment using PHP. It used to work but the message body was scrambled. Now I have got the message body to work but the attachment corrupts. I used to use base64 encoding for the message body but now use 7bit. Can anyone tell me what I am doing wrong? PS please do not tell me...

Setting up a SMTP mail server...

Our e-commerce site requires the sending of email Currently, for some odd reason, the server that is being used to do this is the database server... which clearly isn't ideal (i've just taken over here) My idea is this - to write a windows service that checks for new mails that need sending (these are all in a sql db) and then process t...

Development SMTP Server

I need a cross platform (at least windows and mac) development utility that runs as an SMTP server that acts as an SMTP server but will redirect all mail to a single address that's configurable. It would also be helpful if it wrote the contents out to a file or gui. Long ago I configured Apache James to do this but it wasn't that straig...

Is there a script somewhere that can scrape hotmail web page for simple things like unread count?

Is there a script somewhere (doesn't matter what language although it would be best if it can run on linux) that can fetch for simple things from the hotmail/live mail web page? Of course the main motivation for this is that hotmail does not allow for IMAP access and their pop access is limited to 15 minute check and YET still does not p...

Need to change FromEmail String when sending Email through SMTPClient

My Email Sending Code MailMessage msg = new MailMessage("[email protected]", "[email protected]", "testing email", "to check from email label text"); SmtpClient smpt = new SmtpClient(); smpt.Send(msg); When email open by [email protected] user, In the from email, its mentioned [email protected] where as I need to show like Abc Corporat...

Where to find code that can read email from hotmail?

I know there are a lot of commercial applications on different platform (windows, firefox, even the iPhone) that can read emails from hotmail. I'm trying to build a similar function into my software. Where can I find sample of this code? Hotmail does not support IMAP, only POP so a lot of things are possible through the "official" mean...

parsing email message

Just want a basic understand of what parts a email message may have. I know there is a messageId, date, subject, from, cc, bcc, body, etc. Specifically I want to know how attachments and images may be embedded in the email. At this point I think there are 2, please correct me if I am wrong. attachments embedded attachments/images ...

Mail Queue in asp.net

Hi friends, I want to send bulk emails for users with different reminders for each user... If i send them one by one it will take a lot of time ... so is there any concept in asp.net which use a queue to do this and send mails from there..... ...

How Efficient is ActionMailer?

I am building a tool for users to send invites for a site. Is ActionMailer the best way to send the mail? It seems to be very very slow. Anyone have other recommendations? (Ubuntu Intrepid Server) Thanks. ...

how to develop mail storage in jsp ?

Where can I get information about mail storage? For ex. creating new folder in your Yahoo account and saving some important emails in that folder. I want to develop email server in JSP. I dont know JSP, I have to learn & develop it. Please give me information regarding this. ...

PHP: Download incoming email from POP3 or IMAP, parse it, and mark it as read/delete on server.

Hi there, I'm trying to add incoming email to my web application. It's built on CodeIgniter and PHP, and as far as I can tell I haven't found any CI libraries to do this. What I'd like to do is have a controller that connects to my mail box, via POP3 or IMAP, and retrieves the message, parses it then removes it from the server. Piping...

Is it better to reset password or send lost password back?

Is it better when a user forgets their password to have them reset their password or to just send the lost password back to them? ...

How to send mail with binary word in mail subject using PHP

I am going to send mail through PHP website. Client may custom the mail subject and I will get the post data in UTF-8. But When I send out a html mail using the php mail(), I found the the mail subject cannot show properly while the mail body does. How to send chinese word in PHP mail function? Thanks. ...