Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
931 views

How to use Google Docs for Mailer templates?

Is it possible to use Google Docs for Mailer templates? How can I change template variables via API? Basically, I want to keep a template on Google and export it as a PDF file after changing few ...
6
votes
1answer
250 views

asset_url in mailer on rails 3.1

I have my mailer on rails 3.1 which has an inline attachment. To open that attachment i use this code: attachments["rails.png"] = File.read("#{Rails.root}/app/assets/images/Rails.png") is there a ...
6
votes
1answer
353 views

Make a custom helper available to both Mailer and View in Rails 3.1

is this the best way to make a helper available to both Mailer and view in Rails 3.1? class EventMailer < ActionMailer::Base include MailerHelper helper :mailer I tried helper :mailer on ...
3
votes
4answers
88 views

How to save mail and send it later

I want to save the mail sent on certain days (eg.sunday) in database and then send them on next day. I want to know if it is possible. And how to save the mail object into database.
2
votes
2answers
94 views

Rails User Sign Up Mail Confirmation

I'm trying to create a mailer that sends out an email whenever a user signs up. Pretty simple but I'm new to rails. I have a site that already creates the user. I have a login and sign up page that ...
2
votes
1answer
86 views

Problem using comma in from field in headers of php mail

How can i put commas in the 'From:' field of the mail headers?? For example with "From:Javier, My Site" when i read the email sended with any mail client like outlook, in the From only appears ...
2
votes
1answer
522 views

Rails3 mailer with image_tag ignoring host

I've got a Rails3 mailer layout that include images. This ones are used like : image_tag("emails/top.gif", :width => "700", :height => "10", :alt => "") As of Rails 2, this images ...
2
votes
3answers
1k views

getting devise mailer to use a custom layout?

When I say layout I don't mean just simply the views, I generate those. On all my own mailer's i'm using a default layout. Which I define in the SomeMailer.rb file some_mailer.rb class SomeMailer ...
2
votes
1answer
216 views

Symfony 1.4 mailer: change the subject depending on the environment?

I use Symfony 1.4 and I have two different configurations for the prod and dev environment, the former use the single_address as delivery strategy, and the latter use the spool: dev: mailer: ...
2
votes
2answers
278 views

AR Mailer with changing settings?

we're running ARMailer in one of our projects right now. It's working fine but as different customers are allowed to send confirmation emails via this service we want to offer them the possibility to ...
1
vote
2answers
48 views

To check whether an email sent by me is read or not

I am using PHP mail function to send mails to my clients. But, I wish to know how many of the recipients have actually bothered to open my mail and how many have not. Is there any way to detect that ...
1
vote
3answers
68 views

Trigger email send when a rails model boolean field is set to true instead of false

I have two models in my application. Families has_many Individuals's. individuals's belongs_to Families. I'm trying to make it so that when a boolean field in the Families model is set to "true" an ...
1
vote
2answers
116 views

HTML emails sent through rails arrive as attachment

Following problem: Whenever I try to sent a HTML-email through rails, it arrives at my googlemail-adress as an empty email with the content as an attachment. I'm not quite sure what I'm doing wrong ...
1
vote
3answers
57 views

PHP mailer does not include body

I have this form <form method="POST" action="mailer.php"> <div id="email"><input type="email" name="email" class="email" placeholder="example@example.com"></div> ...
1
vote
0answers
94 views

PHP newsletter - BCC & unsubscribing

I had developed a small newsletter system for a client that used a small script to send a bunch of emails out with attachments. It used the server the website was hosted on to send the emails. It was ...
1
vote
1answer
165 views

PHP code to send birthday wishes to user

I have a user table with date of birth. I need to send them email to wish for their birthday. When i use a php code it only sends them only when i execute that php file. How to trigger that ...
1
vote
1answer
45 views

Rails 3 Mailer :date

What is the default for :date option set to if none is specified in the mail action? It should just be Time.now, yes?
1
vote
1answer
56 views

Ruby on Rails: passing object with exception from Model

Frankly I know that what stands in the title is probably impossible but I couldn't come up with something better. My problem is that I'm not using ActiveRecord to get/save data but some dedicated api ...
1
vote
2answers
207 views

php mailer and html includes with php variables

Hello I am trying to send html emails using php mailer class. The problem is i would like to incllude php variables in my email while using includes as to keep things organized. Heres my php ...
1
vote
2answers
328 views

Sending email with Rails 3 error

I am learning to how send email with Rails 3 with Agile Web Development Book, Task H. However, I keep getting the following error: ArgumentError in OrdersController#create wrong number of arguments ...
1
vote
3answers
159 views

Tell a friend form not working

<?php if ($_POST['friends-email']) { $name = "Sender's Name"; $email = "sender@domain.com"; $recipient = preg_replace("/[^a-z0-9 !?:;,.\/_\-=+@#$&amp;\*\(\)]/im", "", ...
1
vote
3answers
1k views

Rails / Devise / Mailer: Throwing 'config.action_mailer.default_url_options' error on attempted registration

It's just been one problem after another today. I just deployed to my production server and testing it out, with issues whenever anything involves email. Particularly with Devise's confirmable ...
1
vote
1answer
160 views

Rails mailer without view

Is it possible to have a Rails 3 mailer without any view ? When dealing with text-only mails, it would be cool to be able to put the body right in the mailer itself and not have to use a view for the ...
1
vote
1answer
178 views

rails 3 domain for mailer

in my config/application.rb file I have a line: config.action_mailer.default_url_options = { :host => 'example.com' } How can I configure the host attribute for default url options automaticaly ...
1
vote
2answers
353 views

Advice on how to send email to multiple users based on an association

I have created a Ruby on Rails application where users can track workouts. The can do so either privately or publicly. On workouts which are public ( workout.share == 1 ) I allow users to comment. ...
1
vote
1answer
250 views

How to get a before filter in Mailer?

Am using action mailer in ruby on rails. I just want to filter the recipient emails according to email_bounce flag in users table. Is it possible to use any filter in mailer
1
vote
2answers
232 views

Django utf-8 and django-mailer strangeness

Latest django mailer from trunk http://github.com/jtauber/django-mailer/tree/master/docs/ Tested with Postgresql 8.4, sqlite3 template {{ title }} forms.py #-*- coding: utf-8 -*- if "mailer" in ...
1
vote
1answer
686 views

Parsing through email in Ruby using Action Mailer

I retrieve mail using net/pop , but I also need to parse through the email to obtain subject,from address and email body. Any ideas with Action Mailer? I'm supposed to use 3rd party gems.(No,not even ...
1
vote
4answers
126 views

Is there a PHP script to mail forms for beginners for free?

I have a place where I want users to submit emails for newsletter subs and a place to submit an entire contact form. Zero php knowledge outside of know that it can do what I need.
1
vote
3answers
2k views

Php Mailer problem - messages marked as spam - [closed]

A few days ago I upgraded Php Mailer and now some email providers my messages mark as spam. This is what I see in the headers of the marked messages: X-SpamTest-Info: {TO: header missing} This is ...
1
vote
1answer
203 views

Radiant mailer and flash message

I'm using Radiant with the mailer extension to provide a contact form on my website. I'd like to display a nice "your email has been successfully sent" message after sending the email. However ...
0
votes
3answers
26 views

How to generate correct URLs in mailer templates?

I am using Ruby on Rails 3.1.0 and I would like to properly generate URLs in HTML email messages. In my environment file I set config.action_mailer.default_url_options = { :host => 'my_site.org' } ...
0
votes
1answer
17 views

simple mailer with 2 emails to send to

I'm using a simple php mailer script as related to another question i made on here awhile ago. <?php //print_r($_POST); if(isset($_POST['_save'])) { $name = $_POST['name']; $email = ...
0
votes
1answer
52 views

PHP mailer to send mail with HTML contents

I am using php mail method to send HTML mails to people from my domain. I am using the following code to send mail $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= ...
0
votes
1answer
43 views

Rails mailer “undefined method” error.

I'm trying to setup a simple mailer in rails 3.1. I have the following code in my mailer... class Notify < ActionMailer::Base default :from => "signup@raceton.com" def send @email = ...
0
votes
0answers
49 views

Mailer Module sends noname attachment to gmail address from a PC

I'm using a WordPress theme to set up a website for a client, and one of the pages is a contact form. The contact.php page includes the mailer module below. It works great when I send messages from ...
0
votes
2answers
52 views

Simple Php mailer missing some bits

newbie here. Bare with me please. I know this question may have been posted somewhere, but I had a hard time finding one. So I'm learning php. Copied some php mailer and at some point had it working. ...
0
votes
1answer
52 views

Rails + Devise => Use Devise Mailer globally to handle all of the mail sending?

I would like to use the devise mailer globally, since that way I would not have to add another mailer to my app and just use the devise one, to send custom mails outside the devise views/controllers. ...
0
votes
1answer
64 views

Rails: Mailer show no error but email goes nowhere

First time every trying to send an email from Rails. It seems to be working all expect the email never get delivered. So here's the mailers class: class UserMailer < ActionMailer::Base ...
0
votes
1answer
35 views

rails 3 mailer_action

Any idea how can I send my model params to mail? Here is the problem: I have a cardealler application and in car.show page I made a link called "Send email request" <%= link_to 'Send email ...
0
votes
2answers
76 views

Can't get nl2br to work using PHP mailer

I'm trying to post some information from the previous page, and then email it out. The info that is posted from the previous page is inside a text area, and I want it to automatically add new lines ...
0
votes
2answers
35 views

PHP Mail/ validate script does not work

The following form gives the message "thank you for subscribing to the newsletter" if a correct email address is entered but it does not send the results to the designated $to address. Also If the ...
0
votes
2answers
102 views

PHP Mailer: help with echo if form submitted correctly

echo '<script> alert("THANK YOU FOR SUBSCRIBING TO THE NEWSLETTER") </script>'; Where do I place this alert into the following code if I want it to appear if the form is submitted ...
0
votes
1answer
52 views

Why isnt this PHP Mailer for HTML Forms working?

This is the PHP code: <?PHP $to = "adschweinfurth@gmail.com"; $subject = "New Finance Request"; $headers = "Request:"; $forward = 0; $location = ""; $date = date ("l, F jS, Y"); $time = date ...
0
votes
1answer
78 views

Devise and mailers - How to get current URL

When sending emails (for example for 'Reset password instructions') using Devise, i need to know current domain URL, and set that value into mailer's template. request.url doesn't work for me. ...
0
votes
0answers
56 views

Using different IP for sending newsletters, what is best scenario?

suppose my domain is example.com, and mx is: mail.example.com I have to send daily 200,000 newsletters per day. I have one dedicated server which is http server + db + mail server. I have one ...
0
votes
3answers
181 views

Rails, test mailer url

My application sends E-mails containing absolute urls. I set host in config/environment/development.rb config.action_mailer.default_url_options = { :host => 'localhost:3000' } Now I want to ...
0
votes
1answer
34 views

Pass @to_whom and @from_whom to a Rails 3 mailer

How can i pass two users (@to_whom and @from_whom) to a mailer from the controller. I have only been able to get one passed, e.g.: UserMailer.invitation_email(@to_whom).deliver Thanks.
0
votes
2answers
145 views

SMTP settings in rails 2.3.4

I have moved from rails 3.0 to rails 2.3.4.So a newbie currently for this version.I want to set the SMTP settings for my rails 2.3.4 application but unable to find which file to create or use like as ...
0
votes
2answers
152 views

PEAR PHP mailing with name from sender

I am using PEAR's smtp mailer in PHP and it is working great with attachments CC and BB as well as multiple recipients. My boss needs the sender to say the name of the sender when it is sent to an ...

1 2