Drupal core uses email for a number of important tasks, such as verifying authenticated users' email address.
0
votes
0answers
14 views
Can I still use Rules to send “CC:” emails or am I going to have to do everything as a custom module?
I am currently using the Rules module along with workbench to determine when to send an email and this is working fine.
The problem is now the client wants to in addition to sending email to the "To:" ...
1
vote
0answers
34 views
Send mail using drupal_mail to cc and bcc
I want to send mails using drupal_mail function but somehow it is sending mail only to To and that to without message body. Below is the code which I am using.
$params = array(
'body' => 'plain ...
2
votes
1answer
26 views
How do I chose recipient email address depending on textfield value?
I have created a webform which has a "Reference number" textfield.
When someone types 101 in that textedfield, the submitted form should be send to example@gmail.com; if someone types 777, the ...
0
votes
0answers
11 views
Sending an Emails from edit profile page based upon the values
When ever user is changing some of profile field values , based upon the values want to send an email to the user as well as site administrator. Example : If the Gender field values is changed as Male ...
0
votes
0answers
37 views
System email URL is randomly faulty
A Drupal 6 membership-based site has some rules in place to block registrants based on certain field values (that spammers are using).
When this happens, it triggers the system to send an email to ...
1
vote
1answer
36 views
SMTP Auth in Drupal 7
I have dedicated FreeBSD box, The email sending without smtp module is working perfectly but very slow. The receiver receives email after almost 15 mins. I checked the maillog it says delays and ...
1
vote
1answer
15 views
Can users disable email notifications sent to them by Rules?
One of my Drupal sites has a bunch of Rules set up to send email notifications to various roles when certain things happen on the site (new content added, etc.)
Is it possible for one of the site ...
0
votes
1answer
34 views
How can I change the default link to the email contact form?
I'm trying to change the default link generate by the email_field module so It shows an image instead of the text (Contact person by email).
I went into the module and foun the part I need to change, ...
2
votes
2answers
82 views
drupal_mail() strips all html tags from emails
So as the title explains, when sending an HTML email with drupal_mail(), email comes with no HTML tags.
$module = 'module';
$key = 'contact_message';
$language = language_default();
...
3
votes
0answers
24 views
Garbage values in From: in the email sent from Webform
I find some garbage values in the from field of email sent from contact us page in webmail(as in the image From= field below in the top left in which "F" is cut-off by mistake). I've configured ...
3
votes
2answers
83 views
+50
How to enable ckeditor in the emails templates at admin/config/people/accounts?
Just that.
I need to enable ckeditor to write the text body for the welcome e-mail message at admin/config/people/accounts
How can I do this?
0
votes
0answers
15 views
How to convert drupal parameter to html element
I have custom module which sends list donations to user,i pass set of donations as a parameter but problem is pass list of donations shows as string not as a html elemt
foreach($donation as $dd) {
...
1
vote
1answer
47 views
Drupal 7 When a new user registers, where is the confirmation e-mail sent?
Im using Drupal 7, when a new user registers an account I want to be able to approve/deny their membership and then allow them on the website as a registered user. When a new user registers, where is ...
0
votes
0answers
20 views
Error by sending Email in Drupal 7, but ok by Rules?
System messages (Restore Password, Registration) not sending to email and in Logs shows error. But email sending by Rules (Ubercart) very good. What's the problem?
0
votes
1answer
46 views
When in admin overlay, submitting form over 400 times
I have built a very simple module which just implements a block with a custom form. When submitted, the content is emailed to me. I show this block on the dashboard, and without the admin overlay it ...
0
votes
1answer
25 views
how to send muliple emails in drupal in same time
in my site when user submit a dination i want to send email to donor,charity and delivery service at same time(three different emails) in code and i want to kown how can i achieve that,below is the my ...
0
votes
1answer
52 views
Allow user to request resend of activation email
I would like to code a way for a user to request the activation email be resent. Is there a function I can call from within a form-submit hook that will accomplish this?
(using Drupal 7)
0
votes
0answers
17 views
how to add multiple data rows from array to inside email body
i have function which select matched donation for charity and i want to display all that donation data inside the body of druapl email,how can i achieve that..,can i run foreach inside drupal email ...
3
votes
1answer
79 views
How to add html tags to account setting emails?
I am working on a project where I need to add some custom headers to the email which we send to the user on registration. Is there a module which support this functionality?
3
votes
1answer
58 views
Unable to send email using “SMTP Authentication Support” module
I was working on a project where i used "SMTP Authentication Support" module to send emails. The authentications i provided were my personal gmail account details, It was working fine. Now when i am ...
0
votes
0answers
10 views
How do I disable links in emailed version of page created by Print Module in Drupal 7?
My client would like to be able to disable any links (but still show the text string of the link) in the email versions of any node created by the Print module (7.x-1.2). I've read all the ...
2
votes
1answer
34 views
Send the email when specific node is created
In one of my module, i have created a checkbox on user account page. If user has checked that checkbox at that time an email is sent to all the user when any specific node is created. Lets say when ...
0
votes
2answers
39 views
obscuring email addresses in user to user email conversation
my registered users can send each other proper emails (not private messages) through contact forms on their user profiles. When user A sends such an email to user B, I need user B to be able to reply ...
0
votes
2answers
46 views
Send Email After User has confirmed email address using Rules
I my drupal site, I have checked Require Email Confirmation to enable email confirmation. In this case it is sending an email with link to confirm email to set password for account.
Now when user has ...
0
votes
5answers
43 views
Is there a way to send password to the user through 'Welcome (awaiting approval)' email?
I am working on a Drupal site where, i want to send an email to the user providing him with the password. Is it possible.....?
0
votes
0answers
54 views
how to send email to a user when a particular condition is fullfilled
I want to send email to admin before 10, 5, 3, 2, 1 days of expiry date. I had made a custom module for this to be done. here is my code :
<?php
/*
* Implementation of hook_cron()
*/
function ...
0
votes
1answer
38 views
how to add html/ccs element s inside drupal mail function
I am developing function that send a email to user..,and i want to add some html.css styleing to the email how can i achive that folllwing is my code i tried
function zgcrons_mail ($key, ...
0
votes
0answers
29 views
E-mail field (read only) [closed]
How can I lock the default e-mail field (make it read only), so that users will not be able to change their e-mail addresses after registering.
Thanks
1
vote
1answer
55 views
Reject e-mail address from specific domain in simplenews newsletters e-mails
i have a lot of spam users request account with mails on specific domain,i used the User restrictions module to make e-mails on that domains not allowed, but only to the registration .i want to know ...
0
votes
2answers
51 views
Body and Subject fields in Drupal 7 Mail Function
I can't get it working. What am I doing wrong?
$name = $form_state['values']['name'];
$rname = $form_state['values']['rname'];
$email = $form_state['values']['email'];
$message = ...
0
votes
0answers
33 views
Multiple Forms and Emails
I'm working on a Drupal 7 site that will have a page with multiple forms. The forms will send to various user emails that are pulled in ahead of time. I was thinking I would create a content type, but ...
0
votes
2answers
103 views
How to send email in drupal
I have drupal site in that ,i want to send a email to charities when donor post a donation..,and i want to send a email notification to charities,so how i send email using drupal7
$message = array(
...
0
votes
1answer
30 views
Fix Faq Ask Email Layout Question
I am using FAQ Ask along with the FAQ module. Everything works well but the emails are coming all bunched up. I need to be able to re-arrange the layout as I want (simple text with active links).
...
0
votes
1answer
20 views
custom MailSystemInterface implementation
I need to create a custom implementation of MailSystemInterface.
I created a file called my_module.mail.inc but I don't know how to load it and how to tell Drupal to use it by default.
I installed ...
0
votes
0answers
21 views
Safe_Key to Show in Emails
I want to be able to send the safe_key through the internal email. The website was doing this before, and for some reason is not any longer. I've tried %value[safe_key] and %safekey. I read some ...
0
votes
0answers
31 views
Problem sending html mails
I´m using mime mail 6.x 1.1 module and simplenews 6.x 1.4. I create all my newsletter issues in html, and I choose to send in html. However, always the mails are received in Outlook, hotmail and gmail ...
0
votes
1answer
212 views
Send mail with attachment using the MIME Mail module
I am not able to send mails with an attachement using the MIME Mail module.
There isn't munch documentation about this module, but some people claim they have successfully used the module, and sent a ...
0
votes
1answer
108 views
Drupal 7 drupal_mail always considered as spam [closed]
When creating an e-mail using the following:
$my_module = 'custom';
$my_mail_token = microtime();
$from = variable_get('system_mail', "from@asite.com");
$message = array(
'id' => $my_module . ...
0
votes
1answer
54 views
How to use _user_mail_notify with a defined language
as the title say, I would like to know how to use _user_mail_notify with a specified language.
According to the documentation the third parameter should be the one that override ...
1
vote
3answers
57 views
How can i change registration email send to admin
I was wondering how to change the standard text in the email send to the administrator when a new user has registered.
Is there a way to change the text? Maybe the same way as you can change the ...
1
vote
0answers
39 views
How to make the translations for verification email template in drupal 7?
I used User verification module : http://drupal.org/project/user_verify for sending verification email to users and it worked perfectly. After that, i wanted to add the multilingual function for the ...
2
votes
1answer
60 views
Verification mail goes to Spam Folder
If the user register, the confirmation mail goes to spam folder. After doing some R&D, I enabled "Use two e-mail fields on registration form > Set password" and tested; it goes to inbox from the ...
4
votes
1answer
88 views
How to send a email message to specific user role when the site goes to the maintenance mode in drupal 7?
I would like to use emails to communicate with users. So i really want to send a email message for all users(or just a number of users with specific role) when the site goes to the maintenance mode ...
0
votes
2answers
36 views
Phising warnings (in gmail) when using a gmail address as the website email address. How to avoid it?
I would like to use a gmail address (a simple email address. i'm not using google apps) as my website's email.
The problem is that users receiving messages from the websites (notifications etc..) ...
3
votes
1answer
41 views
Hook to log results of calls to drupal_mail() made by other modules?
How can I get the success/failure response of drupal_mail() generated by another modules?
hook_mail_alter() doesn't return success/fail and drupal_mail() is only helpful if the message is coming from ...
0
votes
1answer
159 views
When webform block submitted send email to node author and site admin -how?
This is scenario which I try to reach on my website for free blogging:
There is created universal webform Contact author with fields name, email and text which is as block (display webform as block ...
0
votes
0answers
24 views
contact form sending only message content
I have a contact form on my website where I added few fields (Name, Phone number ...).
When I receive the mail from the website, it only contains the content of the message. All other fields, even ...
0
votes
0answers
60 views
Send Drupal HTML Formatted Email with SMTP
I'm trying to send html formatted emails through drupal using smtp module, i've also enabled mail system and html mail for enabling that but for some reason it's still not sending them formatted. Any ...
1
vote
1answer
90 views
Notify new user of account - must provide at least one recipient email address… doesn't send email
I've searched for a long time, but I can't find anything that helps.
Basically, when a user is created, I input a username, password, and email address. Then, when I check the "notify user of new ...
2
votes
0answers
213 views
Drupal Commerce - using rules to send different emails for Bank transfer and Cash on Delivery Payment [closed]
I have setup eshop (Commerce Kickstart) with two type of payments: Bank Transfer and Cash on Delivery.
I need to send different emails for selected payment method (Bank Transfer or Cash on Delivery).
...
