Has anyone used the mass mailing mod? If so, how does it work?
May 25, 2005, 1:46 PM
Veteran / Moderator (8669 posts)
May 25, 2005, 1:46 PM
Post #2 of 11
Views: 4353
Once you install the mod, you will see a new link when you are logged in with admin permissions -- Send Mass Mail. If you click that link, you'll get a small field for the subject line, a textarea for your email message and the regular form that you use for searching and adding and modifying records. You fill in the subject and the message and then fill in criteria for who you want to send the message to. (You could send it just to those who had opted in for email messages, for example. Or those named "Smith.")
Then it does a search for records that fit your criteria, collects the email addresses and sends out the emails. It ends by telling you how many were sent.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
Then it does a search for records that fit your criteria, collects the email addresses and sends out the emails. It ends by telling you how many were sent.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
May 25, 2005, 2:08 PM
Veteran / Moderator (8669 posts)
May 25, 2005, 2:08 PM
Post #4 of 11
Views: 4353
All I can suggest is that you go over the installation of the mod again.
can I have a default from address?
That's part of the mod. You can't send emails without a "From" address.
I would go back to the pre-mod files and install the mod again from scratch.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
Code:
can I have a default from address?
That's part of the mod. You can't send emails without a "From" address.
I would go back to the pre-mod files and install the mod again from scratch.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
For example,
print qq|
<form action="$db_script_url" method="POST">
<input type=hidden name="db" value="$db_setup">
<input type=hidden name="uid" value="$db_uid">
<table><tr><td align=right><$font>Subject:</font></td>
<td><input type=text name="subject" value="$in{'subject'}" size=40></td></tr>
<tr><td align=right><$font>Your message:</font></td>
<td><textarea name="emailmessage" cols=40 rows=10 wrap="virtual">$in{'email_message'}</TEXTAREA></td></tr>
Do the bold entries need to be the same? If so, Which is correct?
print qq|
<form action="$db_script_url" method="POST">
<input type=hidden name="db" value="$db_setup">
<input type=hidden name="uid" value="$db_uid">
<table><tr><td align=right><$font>Subject:</font></td>
<td><input type=text name="subject" value="$in{'subject'}" size=40></td></tr>
<tr><td align=right><$font>Your message:</font></td>
<td><textarea name="emailmessage" cols=40 rows=10 wrap="virtual">$in{'email_message'}</TEXTAREA></td></tr>
Do the bold entries need to be the same? If so, Which is correct?
May 25, 2005, 2:19 PM
Veteran / Moderator (8669 posts)
May 25, 2005, 2:19 PM
Post #6 of 11
Views: 4342
Yes. Looks like there was an error. They both should be emailmessage. I'll fix it in a bit.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
OK. I have the message working and I resolved the from email address. I'm kinda stumped on why I get this message when I send rather than the successful message. The email does send.
DBMan encountered an internal error. Please enable debugging to view.
Possibly something wrong with the end of the sub html_mass_mail_form?
How should the code that sends it to sub mass_mail_success read?
DBMan encountered an internal error. Please enable debugging to view.
Possibly something wrong with the end of the sub html_mass_mail_form?
How should the code that sends it to sub mass_mail_success read?
May 25, 2005, 4:38 PM
Veteran / Moderator (8669 posts)
May 25, 2005, 4:38 PM
Post #8 of 11
Views: 4347
Change the title of the subroutine to html_mass_mailer_success. I don't know why I didn't see that before.
Both errors are now fixed.
What did you need to resolve about the From email?
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
Both errors are now fixed.
What did you need to resolve about the From email?
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.