email

send email from PHP with outgoing mail server & userid and password authantication

what is best way to send email from PHP using server authantication. Userid & Password & outgoing mail server... Thanks ...

postfix check outgoing email headers

hi, ive set up postfix but unfortunately my emails get caught in hotmails junk/spam filter I would like to see the email headers before they are sent to hotmail. Is there any way i can do this on linux/ubuntu? Cheers Ke ...

Swift Mailer email sending problem

i have downloaded Swift Mailer from their website and try to send simple email with following code <?php require_once 'lib/swift_required.php'; $transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25) ->setUsername('your username') ->setPassword('your password') ; $mailer = Swift_Mailer...

Account verification Yelp style, how is it more "secure" than traditional verification?

For business owners to "take control" of their business page on Yelp, they register for it. The Yelp system performs a telephone call-back. From watching to the video here, it sounds like a telephone version of what we all typically do - e-mail check. For e-mail check, it basically goes like this: User registers > verify e-mail sent ...

BlackBerry - Handle and translate messages (sms/email/pim/pin)?

Does the native Blackberry API allow for the modification of any messaging interface? For example, I'd like to be able to build an app that added a button at the bottom of a received message which says 'translate this'. I've heard that this kind of thing is possible using J2ME plus the native BlackBerry API. Can this be done for all ki...

How to create Empty Label without any entries in it using Google Mail API Ver 2?

Hi, I want to create an empty label in Google apps using Google Mail API. Using Below code: MailItemService mailItemService = new MailItemService(domain, "Sample Migration Application"); mailItemService.setUserCredentials(userEmail, password); MailItemEntry[] entries = new MailItemEntry[1]; entries[0] = new MailItemEntry...

Convert Maildir to mbox

Hi, Im changing hosts and i need to convert my maildir accounts on my old server to mbox on my new server. Any ideas on the best way to do this? I found this: for i in new/* cur/*;do formail <”$i” >> ../mbox;done But i dont really understand it. I have a basic knowledge of linux and I have root access to my server via ssh. most of t...

Sending Email from Lotus Notes using Excel and having Attachment & HTML body

Right I'm trying to send an Email form an excel spreadsheet though lotus notes, it has an attachment and the body needs to be in HTML. I've got some code that from all I've read should allow me to do this however it doesn't. Without the HTML body the attachment will send, when I impliment a HTML body the Email still sends but the attach...

How does System.Net.Mail.SMTPClient do its local IP binding

We have a load balanced (NLB) ASP.NET web app which sends email. The servers are dual homed with an external facing and internal (behind firewall) facing IP. The Mail server is behind the firewall. We have been seing a problem where the SMTPClient class throws an exception stating it is unable to connect to the SMTP server. The net...

Delaying emails in PHP to avoid exceeding server limit

Okay, so here's my problem: I have a list of members on a website, and periodically one of the admins my site (who are not very web or tech savvy) will send a newsletter to the memberlist. My current memberlist is well over 800 individuals long. So, I wrote an email script that sends the email to the full memberlist, with the members l...

How can I retrieve an e-mail, open a .msg attachment, and parse the attachment, in ASP.NET?

I need to be able to make a program that looks through a mailbox of bounced messages, where the messages come back with the initial message in a .msg attachment, and open the .msg attachment for processing in ASP.NET 2.0. Is there any sort of code that might help in this? I've been looking at http://stackoverflow.com/questions/44383/re...

How to retrieve a IMAP body with the right charset?

Hi Guys, I'm trying to make an "IMAP fetch" command to retrieve the message body. I need to pass/use the correct charset, otherwise the response will come with special characters. How can I make the IMAP request/command to consider the charset I received in the BODYSTRUCTURE result?? ...

How to set a new sender address when using cPanel mail forwarder?

Hi folks, assume having a mail server (mail.com) and an additional webserver (web.com) using cPanel as an administration interface. The mail server is configured in a way that all mails from any address[at]mail.com may only be sent from within the servers network. Now at web.com I have created a simple mailing list by adding a few mail...

PHPMailer erroring out with Call to undefined method PHPMailer::SetFrom()

Hay I'm using PHPMailer to send some simple emails, however the function SetFrom() doesn't seem to work, even though the code I'm using is straight from phpmails docs (http://phpmailer.worxware.com/index.php?pg=examplebmail) Here my error Call to undefined method PHPMailer::SetFrom() and my script require_once('inc/phpmailer/class.p...

RegexValidator to validate emails, making standard attribute

I would like to validate an email using the RegexValidator, e.g. [RegexValidator(@"^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$")] Which works fine, now I want to wrap the attribute so I can store this in one place: public class EmailAttribute : RegexValidator { public EmailAttribute(...

Encoding Special Characters For Outlook HTML Email

I have an asp.net / C# page which takes a comment, and then emails that comment. Sometimes when the user enters "&" in the comment, the comment is being truncated. So for example if the comment is "test & test" the email only sends out "test ". I have tried HttpUtility.HtmlEncode - but it looks like the issue is on the outlook side and ...

Save email as draft in php

Hello, The past few days I've been trying to find out how I can save emails as drafts using php. I've created an emailaddress that uses imap (and resides on the same server). What I would like to do is to use php to create an email and store it in the drafts folder. These emails would then be recognized by the email client (ms office o...

emails not going out to all users

I have a few scripts that send out emails to my users, and for some reason not all users are getting the email. The site is not live yet, so its no big deal yet but I dont understand why. I have set up a few fake accounts, one with my school email, one with hotmail and one with yahoo. When I sign up with my school email I recieve the wel...

Is it possible to send an email and auto redirect in single php file?

As the title said: Is it possible to send an email (using php mail()) and after sending the email, auto redirect to another page. All the codes will be in single php file? Code-wise, should be something like this: if(mail(argument...)){ header("Location: www.google.com"); } I think I would get a: "Error: header information alrea...

Start Android intent from email

Hi! I need a good way of sending information TO the Android device that doesn't use a special server that has XML data. I would like to base this around email functionality. Lets say I send an email with some special text/link that when clicked starts and intent on the phone. I don't want to replace the users current email application....