Try adding :- :domain => "gmail.com" in your mailer setting. &
you may modify your method 
In user.rb :-
def email
    UserMailer.email(self).deliver
end

In usermailer.rb :-

def email(user)
    @user = user
    mail(:to => user.email, :subject => "Welcome!!")
  end


On Tuesday, September 18, 2012 8:55:06 PM UTC+5:30, keerthi priya wrote:
>
> I have sent a big text but still the same i am getting mail in spam
>
> On Tue, Sep 18, 2012 at 8:44 PM, Avi <[email protected] 
> <javascript:>>wrote:
>
>> If there is an extra space, some symbols(which are spam) or any spam 
>> words, the mail goes to the spam folder.
>> Try with a sentence(all words).
>>
>> On Tuesday, September 18, 2012 8:37:26 PM UTC+5:30, keerthi priya wrote:
>>>
>>>
>>>
>>> On Tue, Sep 18, 2012 at 8:30 PM, Avi <[email protected]> wrote:
>>>
>>>> What is your html content ?
>>>>
>>> Welcome 
>>>
>>>> Try not to use "&, # " in your html. 
>>>>
>>> i did not get this line 
>>>
>>>> Hope it works. 
>>>>
>>>>
>>>> On Tuesday, September 18, 2012 8:26:19 PM UTC+5:30, keerthi priya wrote:
>>>>
>>>>> yeah i am getting my mails not to my inbox . what should i do to get 
>>>>> my mail to inbox
>>>>>
>>>>> On Tue, Sep 18, 2012 at 8:14 PM, Avi <[email protected]> wrote:
>>>>>
>>>>>> Can you check your spam folder in your mailbox ?
>>>>>>
>>>>>>
>>>>>> On Tuesday, September 18, 2012 8:05:32 PM UTC+5:30, keerthi priya 
>>>>>> wrote:
>>>>>>>
>>>>>>> Hi all i am trying to send mail but i could not send it and at the 
>>>>>>> end it is redirecting to right page but mail is not receiving.
>>>>>>>
>>>>>>>
>>>>>>> i got this in my log
>>>>>>>
>>>>>>> Sent mail to mailid
>>>>>>>
>>>>>>> Date: Tue, 18 Sep 2012 19:38:51 +0530
>>>>>>> From: xxxx
>>>>>>> To:  xxxx
>>>>>>> Subject: fdfdsafsdafdsfsfsdafdsf
>>>>>>> Mime-Version: 1.0
>>>>>>> Content-Type: text/plain; charset=utf-8
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> dfsadfdsfsdafsfsdfsdfsd
>>>>>>> Redirected to 
>>>>>>> http://localhost:3000/student/******profile/776<http://localhost:3000/student/profile/776>
>>>>>>> Completed in 5696ms (DB: 3) | 302 Found [http://localhost/student/**
>>>>>>> emai****l/776 <http://localhost/student/email/776>] 
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>  UserMailer::deliver_email(**sen****der, recipient_list, 
>>>>>>> params['email']['subject'], params['email']['message'])
>>>>>>>
>>>>>>> class UserMailer < ActionMailer::Base
>>>>>>>   def email(sender,recipients, subject, message)
>>>>>>>   
>>>>>>>     recipient_emails = (recipients.class == String) ? 
>>>>>>> recipients.gsub(' ','').split(',').compact : recipients.compact
>>>>>>>     setup_email(sender, recipient_emails, subject, message)
>>>>>>>   end
>>>>>>>
>>>>>>>   protected
>>>>>>>   def setup_email(sender, emails, subject, message)
>>>>>>>     logger.info"i am in SETUP"
>>>>>>>     @from = sender
>>>>>>>     @recipients = emails
>>>>>>>     @subject = subject
>>>>>>>     @sent_on = Time.now
>>>>>>>     @body['message'] = message
>>>>>>>   end
>>>>>>>   
>>>>>>> end
>>>>>>>
>>>>>>>
>>>>>>> Config/intializers/smtp_gmail
>>>>>>>
>>>>>>> ActionMailer::Base.smtp_**settin****gs = {
>>>>>>>   :address => "smtp.gmail.com",
>>>>>>>   :port => 587,
>>>>>>>   :authentication => :plain,
>>>>>>>   :enable_starttls_auto => true,
>>>>>>>   :user_name =>  "xxxx",
>>>>>>>   :password => "xxxxx"
>>>>>>> }
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> till def setup_email i am able to reach it but i am not receiving 
>>>>>>> mail.
>>>>>>>
>>>>>>>
>>>>>>> Cheers,
>>>>>>> KP
>>>>>>>
>>>>>>  -- 
>>>>>> You received this message because you are subscribed to the Google 
>>>>>> Groups "Ruby on Rails: Talk" group.
>>>>>> To post to this group, send email to rubyonra...@googlegroups.**com.
>>>>>> To unsubscribe from this group, send email to rubyonrails-ta...@**
>>>>>> googlegroups**.com.
>>>>>> To view this discussion on the web visit https://groups.google.com/d/
>>>>>> **ms**g/rubyonrails-talk/-/-**3oyMzExQ**14J<https://groups.google.com/d/msg/rubyonrails-talk/-/-3oyMzExQ14J>
>>>>>> .
>>>>>>  
>>>>>> For more options, visit 
>>>>>> https://groups.google.com/**grou**ps/opt_out<https://groups.google.com/groups/opt_out>
>>>>>> .
>>>>>>  
>>>>>>  
>>>>>>
>>>>>
>>>>>  -- 
>>>> You received this message because you are subscribed to the Google 
>>>> Groups "Ruby on Rails: Talk" group.
>>>> To post to this group, send email to rubyonra...@googlegroups.**com.
>>>> To unsubscribe from this group, send email to rubyonrails-ta...@**
>>>> googlegroups.com.
>>>> To view this discussion on the web visit https://groups.google.com/d/**
>>>> msg/rubyonrails-talk/-/**YSJ1VdHox94J<https://groups.google.com/d/msg/rubyonrails-talk/-/YSJ1VdHox94J>
>>>> .
>>>>
>>>> For more options, visit 
>>>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
>>>> .
>>>>  
>>>>  
>>>>
>>>
>>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Ruby on Rails: Talk" group.
>> To post to this group, send email to 
>> [email protected]<javascript:>
>> .
>> To unsubscribe from this group, send email to 
>> [email protected] <javascript:>.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msg/rubyonrails-talk/-/5XpqwvjuQl0J.
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>  
>>  
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/OM2IT3VD6WMJ.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to