Tagged Questions
2
votes
2answers
54 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();
...
0
votes
0answers
26 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
167 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
0answers
60 views
Send node file attachment on form submit
I have a form built into a block on one of my content types, the content type has a file connected to the node.
I currently have a form the will send an email to the address you put in with a default ...
0
votes
0answers
130 views
mail is not sent through SMTP
Im trying to send an HTML mail through SMTP, Im currently using the modules:
MIME mail
PHPMailer
Mail System
On a Drupal 7 site.
The problem is that when I check the mail header that I have ...
2
votes
0answers
183 views
Email not sent with csv file as attachment
I have implemented custom function to send email with csv file as attachment.
CSV file content is created on the fly.
When I setup email header but text "Content-Type: text/html; charset="utf-8", ...
2
votes
2answers
538 views
How can I use the Mimemail with STMP Authentication Support modules together on D7?
Is it possible to use Mimemail, Mail System, and SMTP Authentication Support modules together?
Why: Currently I am using Mimemail to send HTML-formatted messages; however, because of the ...
1
vote
0answers
153 views
MimeMailSystem not sending emails
I've been setting up a newsletter using Simplenews - it works well enough but only for plain text emails.
I've set up and installed MimeMail but when selected as the site-wide default ...
0
votes
1answer
42 views
How can I route automated emails through an email function in my module?
I was unable to get HTML mail to use a template properly, so I have a mymodule_mail function that sends emails when a response is required from the user
function billiondollar_mail($key, ...
3
votes
2answers
899 views
Set up Mailhandler with IMAP Gmail
I can't figure out how to configure Mailhandler with an IMAP Gmail account locally with MAMP.
I've been following the recommendation at http://drupal.org/node/207366#gmail and it is never working ...
1
vote
3answers
572 views
What's the difference between the “Mime Mail” and “Mail MIME” modules?
There appear to be two ways of sending HTML e-mail using Drupal:
Mail MIME with HTML Mail
Mime Mail
Mime Mail has significantly more installs, but it depends on Mailsystem, which is maintained by ...
0
votes
1answer
767 views
SMTP authentication in Drupal [closed]
Consider my domain is domain.com. Currently I am transfering my domain to another server(GoDaddy Plesk). I am testing the site by chaining my DNS. When a payment is made in ubercart email is not ...
1
vote
2answers
718 views
How to send 2 mails simultaneously with drupal_mail()
I want to send my order to my email, and also to my client's email.
I am sending an order placed on my website using this code:
function MYMODULE_form_submit($form, &$form_state) {
...
5
votes
2answers
2k views
Email a Whole Node (Including template contents)
I have created my own custom node.tpl.php file.
I now want to email the entire node, each time the user creates a new node of that content type (I have made sure that all the HTML in my node.tpl.php ...
0
votes
1answer
93 views
How to find a mails $mailkey
I'm trying to theme a couple of different mails generated by notifications using the mimemail module. Is there a reliable method to find a mails mailkey for use in a template?