SlideShare a Scribd company logo
ActionMailer in Action Rob Kaufman Notch8.com [email_address] Talk about ActionMailer Beyond just send a message via SMTP
Intro to ActionMailer (Send) ActionMailer allows you to send and receive email.  Most people just use send ActionMailer is more MV than MVC AM model in /app/model inherets from ActionMailer::Base instead of ActionRecord::Base AM views are stored in /app/views/model_name Plain text vs HTML email
Safety First - Overview IDs in email Careful about 'real' email addresses in development env Careful about a lot of email Understand limits of email via own server
Safety First - Checklist Before Committing Create new email tagging Create new NotifierTest method Create new Notifier method Create new Notifier view Verify that email body includes a link at the bottom to unsubscribe
Safety First - Checklist Before Commiting (cont.) Verify that the email contains the lead id Verify that the email bodies fields are all correctly formated Verify mime-type if sending HTML email Test, Commit, Push Bootstrap
Safety First - Checklist Before Sending Send sample copy to Design (currently Andy) and Marketing (Casey and Carrie) Send sample to at least 2 individuals (besides author) to look for typos/errors Run RAILS_ENV=production rake email:check EMAIL_TEMPLATE=’template_name’ to verify Inbox delivery
Safety First - mail_safety Overrides Tmail::Mail.deliveries so that everything is sent where you want it. Can be used w/ either sendmail or smtp
Setting up Email Testing
Testing - Assert Email
Testing - Email Test Task Hits the big 4 (Hotmail, AOL, Yahoo, Gmail) Can be used just to send the templates If freepopd is installed, can check that the emails where received as well
Testing - Email Test Task rake email:send Sends all templates rake email:send EMAIL_TEMPLATE=hello Just sends the hello email rake email:accounts:check Sends all , waits for you, then checks all rake email:accounts:clear Removes all emails (cleans accounts) rake email: accounts:count_messages
Summary and Questions

More Related Content

PDF
[Infographic] Email Campaign - Pre-Send Checklist
PDF
How to Create a List in MailChimp by NeriMarcos.com
PDF
Slideshow
ODP
Ruby 1.9 Or Bust Presentation
ODP
Ruby Debug
KEY
4treep: Presentation light
PPT
Window July August 2008
PDF
The Art of Negotiation
[Infographic] Email Campaign - Pre-Send Checklist
How to Create a List in MailChimp by NeriMarcos.com
Slideshow
Ruby 1.9 Or Bust Presentation
Ruby Debug
4treep: Presentation light
Window July August 2008
The Art of Negotiation

Similar to Action Mailer In Action (20)

PPT
EMarketing Techniques Conference_Emailmarketingessentials May2008
ODP
How To Build A Bulk Email Sending Application In PHP
PDF
Node mailer example how to send email using nodemailer with gmail & mailtrap
PPT
Pod1 Email Marketing Seminar Liam
PDF
Validate Email with JavaScript.pdf
PDF
Discover proven strategies to boost your email open rates, avoid spam folders...
PPT
Top Ten Reasons to use Gmail
PPT
Chapter 8 E-Mail
PDF
A Simple Guide To Connect Your cPanel Email to Gmail .pdf
PPTX
Email marketing for your business.
PPT
HTML email best practices
PPT
HTML email best practices
PPT
2010 Spam Filtered World Fv
PDF
How to Set Up Email Notifications for HRMS Events in Odoo
PDF
Send Email In Asp.Net
PPTX
Module 03 communication on internet
PPTX
Action Mailer
 
PPT
Email Headers – Expert Forensic Analysis
PPTX
Amazon Simple Email Service
KEY
Sending email with perl
EMarketing Techniques Conference_Emailmarketingessentials May2008
How To Build A Bulk Email Sending Application In PHP
Node mailer example how to send email using nodemailer with gmail & mailtrap
Pod1 Email Marketing Seminar Liam
Validate Email with JavaScript.pdf
Discover proven strategies to boost your email open rates, avoid spam folders...
Top Ten Reasons to use Gmail
Chapter 8 E-Mail
A Simple Guide To Connect Your cPanel Email to Gmail .pdf
Email marketing for your business.
HTML email best practices
HTML email best practices
2010 Spam Filtered World Fv
How to Set Up Email Notifications for HRMS Events in Odoo
Send Email In Asp.Net
Module 03 communication on internet
Action Mailer
 
Email Headers – Expert Forensic Analysis
Amazon Simple Email Service
Sending email with perl
Ad

More from Rob Kaufman (6)

PDF
How to Get Your Idea Built
PDF
Developer Flow
ODP
Learned from Woodworking
ODP
Testing Philosphies
ODP
Tanning Bed
ODP
Mysql S&M
How to Get Your Idea Built
Developer Flow
Learned from Woodworking
Testing Philosphies
Tanning Bed
Mysql S&M
Ad

Recently uploaded (20)

PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
The various Industrial Revolutions .pptx
PPTX
Chapter 5: Probability Theory and Statistics
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
Developing a website for English-speaking practice to English as a foreign la...
PDF
Hindi spoken digit analysis for native and non-native speakers
PPTX
Tartificialntelligence_presentation.pptx
PDF
DP Operators-handbook-extract for the Mautical Institute
PDF
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Hybrid model detection and classification of lung cancer
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
August Patch Tuesday
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
The various Industrial Revolutions .pptx
Chapter 5: Probability Theory and Statistics
NewMind AI Weekly Chronicles – August ’25 Week III
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
A novel scalable deep ensemble learning framework for big data classification...
Developing a website for English-speaking practice to English as a foreign la...
Hindi spoken digit analysis for native and non-native speakers
Tartificialntelligence_presentation.pptx
DP Operators-handbook-extract for the Mautical Institute
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
Module 1.ppt Iot fundamentals and Architecture
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
NewMind AI Weekly Chronicles - August'25-Week II
Group 1 Presentation -Planning and Decision Making .pptx
Hybrid model detection and classification of lung cancer
Univ-Connecticut-ChatGPT-Presentaion.pdf
August Patch Tuesday
How ambidextrous entrepreneurial leaders react to the artificial intelligence...

Action Mailer In Action

  • 1. ActionMailer in Action Rob Kaufman Notch8.com [email_address] Talk about ActionMailer Beyond just send a message via SMTP
  • 2. Intro to ActionMailer (Send) ActionMailer allows you to send and receive email. Most people just use send ActionMailer is more MV than MVC AM model in /app/model inherets from ActionMailer::Base instead of ActionRecord::Base AM views are stored in /app/views/model_name Plain text vs HTML email
  • 3. Safety First - Overview IDs in email Careful about 'real' email addresses in development env Careful about a lot of email Understand limits of email via own server
  • 4. Safety First - Checklist Before Committing Create new email tagging Create new NotifierTest method Create new Notifier method Create new Notifier view Verify that email body includes a link at the bottom to unsubscribe
  • 5. Safety First - Checklist Before Commiting (cont.) Verify that the email contains the lead id Verify that the email bodies fields are all correctly formated Verify mime-type if sending HTML email Test, Commit, Push Bootstrap
  • 6. Safety First - Checklist Before Sending Send sample copy to Design (currently Andy) and Marketing (Casey and Carrie) Send sample to at least 2 individuals (besides author) to look for typos/errors Run RAILS_ENV=production rake email:check EMAIL_TEMPLATE=’template_name’ to verify Inbox delivery
  • 7. Safety First - mail_safety Overrides Tmail::Mail.deliveries so that everything is sent where you want it. Can be used w/ either sendmail or smtp
  • 10. Testing - Email Test Task Hits the big 4 (Hotmail, AOL, Yahoo, Gmail) Can be used just to send the templates If freepopd is installed, can check that the emails where received as well
  • 11. Testing - Email Test Task rake email:send Sends all templates rake email:send EMAIL_TEMPLATE=hello Just sends the hello email rake email:accounts:check Sends all , waits for you, then checks all rake email:accounts:clear Removes all emails (cleans accounts) rake email: accounts:count_messages