email

Send email from users account

Hi All, In my sharepoint site I have a document library with a workflow attached to it.Once any user upload a new document workflow is started and the document is send to approver for approval along with this an email has been sent to the approver for new document pending for approval. Now then email is sent from the mail server I have ...

maximum size of email message

We have developed the .net application we got the following exception "The message could not be send to the smtp server. The transport error code was 0x800ccc62. The server response was 500 line limit exceeded how to resolve the problem? ...

Sending (relatively) large volumes of html e-mail with php

What is the best way/class to send a lot of html e-mail? (Every mail needs to contain information (from a mysql database) that is linked to the address to which it's sent) ...

Implementing a 'Send Feedback' feature in a Java desktop application

I would like to implement a 'Send Feedback' option in a Java desktop application. One which will pop up a box for the user to enter a comment, then send it to us along with a screenshot of the application window. How would be the best way to communicate the data to us? Two obvious solutions spring to mind: Email - I'm thinking that ...

What tools do I need to set up a script that will email around 1,000 people a day?

The email addresses are stored in a database and the number of people to be emailed each day is variable. I'm not sure yet whether the emails would need to be sent individually or as a mass email. I want recommendations as to what language to use to do this and any other components necessary in a solution. thanks ...

How to save image attachment from email using IMAP & PHP?

Hi All, I've successfully written script that connects to my mail server and retrieves the headers and bodies of all new messages. I want to take it one step further to detect if attachment exists (images only), if so, download to server. How to go about this using PHP & IMAP? Thanks in advance ...

aliases (sendmail) to redirect emails

I have read that "aliases" (etc/aliases) can be used to redirect an email to an external email address (or piping it to a script etc.) It should normally work by putting this command in the "aliases" file: support: [email protected] Afterwards you have to use the newaliases-command and thats it. But unfortunately after doing these ...

is there a way to email all input controls values in asp.net

I am looking for a way to email all the values entered by a user into a form. Does this exist in asp.net ? here is my email code: Dim messagemain As String = emailbody Dim message As New MailMessage() message.IsBodyHtml = True message.From = New MailAddress("[email protected]") message.To.Add(New MailAddress...

Attaching a file in Grails using Mail plugin

I'm using mail 0.9 and it seems that the attachment feature is still not in? Was this item still not included until now? If that's the case, please tell me how to extend a Grails plugin without hacking the code directly. Thanks. ...

django apps for changing user email with verification ?

Hello, I already use django-registration : you can register with an email verification, you can reset password with an email confirmation but there is no way to change user's email with an email verification. Do you know a django application which gives the ability to change user's email address by sending to the new address a verifica...

Is there any way to configure trac to use a custom mailing tool?

Is there any way trac could be made to work with a custom mail tool? For example, imagine a command line script which takes all of it's arguments from it's command line arguments: script -s sender -t title -to [email protected] -b body The tool is configured to use COM for email sending, and I think it would be impossible to define ...

php class to handle and parse the courier mail server format

does anyone know if there's a class out there that parses courier mailboxes (ie: courier imap mail server)? returning lists, and parsing individual messages? this is not a protocol issue, i'm not interested in connecting to a remote mail-server. rather, i'm interested in manipulating the local mail-server via filesystem. In particular,...

API for Apple mail.app? Not Public?

Hi! I was looking into Apple Mail.App plugin development and I found nothing in regards to a public api for mail.app, except that there were many websites that said there is no such thing?! Is that correct? I honestly can't believe it?! Cheers, alex25 ...

Compiling emails into project documentation

What's the best way to turn a bunch of email threads into a working project documentation? This other stack overflow question seems a little stale, but might be the right idea: http://stackoverflow.com/questions/11612/is-there-any-wiki-engine-that-supports-page-creation-by-email Also, Evernote shared notebooks might be an idea: http://...

Application Email Architecture

I've inherited an ASP.NET website written in c# using an mssql 2k8 database that is sending emails based on an insert into a message table via a trigger using database mail :| One of any failures and too many things rollback, aren't logged and no email is sent... What a mess. I've written a few email subsystems in the past and I thoug...

When using EWS from within a website, is it possible to use the current logged in users identity?

I have a web application using Forms authentication provided by AD. I would like to know if it's possible to use EWS to send mail as the currently logged in user without having to supply credentials, or; would I be required to set up an account with impersonating access which will send mail on behalf of the currently logged in user? ...

How to automatically email customers registration keys?

I've written a bit of software that I'd like to share with others (a Mac Dashboard widget, specifically), but I'd also like to be compensated a bit for the time I spent on it. I've devised my own simple registration key algorithm, which takes a customer's email address and creates a 12-character alphanumeric key. The software itself is f...

Errors are reported by iPhone MFMailComposeViewController. Is it safe ?

In trying to send a mail with a simple KML attachemnt (just a few bytes) i'm getting the warnings below in the console during the send. Can these be ignored or have I made an error ? The mail seems to send OK - (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(N...

Java Mail program not working

I have the below mail program. The problem is mail program runs successfully but it doesn't send me the emails. The logs say it's mailed successfully. Not sure what might be the problem. Do i need to change the Java Program? I have the below values set in the application.properties file and these values get read from the program and pas...

Sending Mail using PHP on IIS 7 - Windows 2008 Server

Hi, I'm having trouble sending mail using PHP mail() on IIS 7 using Windows 2008 Server. The server is dedicated, thus I have full control over my machine. php.ini looks fine - ([mail function] is configured) I don't get any error from mail() (with the right parameters of course) btw - I got ASP and ASP.NET sending mails without any pro...