10 posts tagged email. Clear filter
-
Matching email addresses in Javascript
Matching email addresses in Javascript regex = /\b[a-zA-Z0-9.%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}\b/img "hello sean@example.com how are you? do you know bob@example.com?".match(regex) // =...
-
How to send email with Python, smtplib and Postmark
Here is a quick code snippet showing how to send email via SMTP with Postmark without any dependencies. It assumes you are using Heroku and have added the addon. But if not just make sure your api...
-
Have Git Email Committers After Pushes
You need a Mail Transfer Agent MTA on the server. The easiest way is to install Sendmail, which Git uses by default. Remember that /etc/hosts file needs the ip address to map to the domain name...
-
Carrier Email Addresses for Sending SMS over Email
Just for reference, here are the carrier email addresses for sending email as an SMS. Look up the carrier for the phone in question, then send an email in this format...
-
Using the PHP Mail Function with Additional Headers
Pass a fourth parameter to the mail() function with the header information.
-
Send Mail in Ruby with a Pony
Great little gem that let's you quickly and easily send out mail from your ruby scripts.
-
Using sendmail to send mail on ubuntu box
I normally install postfix for my MTA. However, I've never really used sendmail so I'd decide to give it a whirl for a new application I'm working on. I don't use it for anything but handling the...
-
Email Obfuscation and Extraction from Text with Rails
There is a helper method for handling the obfuscation of email addresses in Rails. If you want to then extract an email address(or all email addresses) from a block of text here is the code. I...
-
Postfix, ActionMailer and OpenSSL Fix on Ubuntu
If you run into problems using ActionMailer \ 2.2, Postfix and OpenSSL while sending mail from your application, try changing the following: Change to OpenSSL support with Postfix does not work out...
-
Sending eMail with Rails on Mac OS X Development Environment
You'll need a mail transport agent (MTA). I installed and used postfix using Mac Ports. You'll need to start postfix, to send mail from your Rails application. You can set it as a startup item and...