email

php mail function problem

I have currently the following and it's not working. (normally I have a body text and header information, but nothing works) mail("[email protected]","Nieuw offerte aanvraag","test"); We'll on my server it did because I'm running php 5 or higher, no problem there. But the contact page is from a client which runs php 4.4 I believe....

ASP.NET MVC + SQL Server Application: Best Way to Send Out Event-Driven E-mail Notifications

I have an ASP.NET MVC application that utilizes NHiberante and SQL Server 2008 on the backend. There are requirements for sending out both event-driven notifications on a daily/weekly basis AND general notifications on a weekly basis. Here is an example of how the event-driven workflow needs to work: Employee(s) create a number of pu...

Cron, Email, Performace

I am building a system for my client. Its a lot like www.getafreelancer.com. There are 2 types of user: Service Provider and Service Buyer. Service Buyers post projects. Service Providers are notified of any new projects posted, which fit into their classifications. Assume: There are approx 100 qualifications. Service Provider can choos...

Security implications of a limited function server

I want to collect certain information from people/devices via email. These emails will never be delivered to anybody, but simply processed on the server. Received emails will be processed - some simply dropped, most stored (in a database), attachments may or may not be stored (but never executed) depending on certain conditions. I have ...

Can I BCC an email through SharePoint Designer workflow?

The standard SharePoint 'Send Email' workflow activity does not support a BCC field, however I need to send an email BCC'd to a SharePoint group. I am prepared to write a custom workflow in VS 2008 to deliver this, however I thought I would ask the question here in case there is a quicker method to deliver this type of functonality. Th...

Bypassing exchange accounts while sending mail through SMTP Server in ASP.NET

I develop applications using the ASP.NET framework for my academic organization. We also have an exchange server for internal accounts. Since my organization is under the umbrella of a larger one, all our internal exchange accounts also have external parent accounts with the same names. I'm facing an issue where automatic emails trigge...

Possible to incorporate "push email" into a web app?

I was reading about this new feature in Gmail called push email which seems to be designed with smart phones in mind. But I wonder if it would be possible to incorporate this into a web app. So for example, let's say I allow Gmail to push email to a particular HTML form and then I have my web app process the emails. Would that make...

IIS wont send e-mail with specific FROM header

Can anyone please explain why IIS wont send message from php if FROM header field is in the following format: FROM: "Some Name" <[email protected]>. If I just use [email protected] everything is ok. ...

PEAR's mail queue alternative?

I'm looking for a good mass mailing library for PHP. Everything seems to point to Pear's mail_queue, but I was wondering if there are any alternatives? I need something that can: Manage multiple smtp servers, each with their own per hour limit Send HTML emails Do all of this as fast as possible? Any suggestions? ...

PHP mail() works from command line but not apache

I'm trying to figure out why the mail function in PHP fails when called via web browser (i.e. apache), but I can run the same script from the command line using php -f mailtest.php This is one of my client's Fedora servers, so I don't grok it completely, but I do have root access should I need to change anything. from php.ini: ...

How can I get an email message's text content using python?

Given an RFC822 message in Python 2.6, how can I get the right text/plain content part? Basically, the algorithm I want is this: message = email.message_from_string(raw_message) if has_mime_part(message, "text/plain"): mime_part = get_mime_part(message, "text/plain") text_content = decode_mime_part(mime_part) elif has_mime_part...

change email content for new user in wordpress

I need to change the default email text that will be sent while creating a new user in wordpress. Where can i find the option to change the default text: Welcome [username] to [blogname] Please find below your login details: Username: [username] Password: [password] [blog url] ...

Delete Email on Server using javax.mail

Hi all, i am receiving emails from the server using the IMAP protocol like it is described here. This is working very fine and i can store the emails and attachments on the disk. Question: Do i have the possibility to delete files from the Server, so that they are no longer available, when a client tries to receive all emails? if so, p...

PHP Mail with MS Exchange

I usually use phpmailer for sending emails, however I have a client that uses a strict MS Exchange environment. They will not set up the SMTP connector for Exchange. Is there a way to send email through an Exchange server if SMTP is not setup? Thank you. ...

Send outline as email using MFMailComposeViewController

I'd like to send a text outline via email using MFMailComposeViewController. I'm currently doing this by creating a HTML version of the document and setting this as the body of the message.This works fine when viewing the email in MFMailComposeViewController, but on the receiving end (MobileMail.app, GMail Webinterface, OSX Mail.app) the...

I need to attach a file to an outbound email automatically...Help...

I have one form (input.html) that's completed by people working in five different divisions of this business. When the form is submitted it posts to output.php. Output.php does a number of things: First it displays all of the input information to the screen as a completed form. (Just to show them their completed document). It has also...

Is it possible to send a file attachment (txt) from iphone via email?

I saw two related questions about this topic - one has an old link in an answer and this one doesn't have an answer (right now). (I am new to iphone development) I want to create a file from my app, then send that file as an attachment. Is this possible? I'm not looking for someone to send me teh codez - just SPECIFIC references and ...

Demo email sending and receiving locally using a mail server

I have a upcoming demo of a product that (amongst other things) sends email alerts. I don't know if I'll have an Internet connection for this demo. I also need to be able to fire up something like Outlook Express and view these alerts. So I have come to the conclusion that I need to install some sort of small mail server to send the ma...

Mail php - errors with form.

Hi, I'm wondering ... In the head of the doc is the mail body and it is the details in the body of the document. They don't match because I made some html changes but I can't just past it into it I have to almost go through it manually, does this make sence? Lol Like it does this for the php code '.round($mon_pay_shield_wmant).'' and...

E-mail sent via CakePHP shows up with blank message body when accessed via POP

I'm writing a small CakePHP application for an organization and have included a simple contact form that accepts an email address, subject, and message, and emails the message to the address. Everything seems to work fine, and any email sent to myself or anyone at the organization arrives just fine, except if they access the message via...