Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Problem Mass Mailer - save a Template

Quote Reply
Problem Mass Mailer - save a Template
Hi,

I can't save a mailing as an email-template.

I use "New Template" and then I try the "Save" or "Save As" Button.

In both cases it has just the effect that the mailing is sent. That means that it is visible in the "view mailings" list.

But it's not visible in the template-list.

Can somone help?

We are using Gossamer-Forum 1.1.8 German Version.

Regards
Johannes

Last edited by:

jmar: Jun 6, 2003, 7:52 AM
Quote Reply
Re: [jmar] Problem Mass Mailer - save a Template In reply to
You need to modify admin.cgi. there's a bug with the mailer subrotuine.
Quote Reply
Re: [jmar] Problem Mass Mailer - save a Template In reply to
Hi,

I already reported this bug near one year ago: http://www.gossamer-threads.com/...i?post=213934#213934. Frown

François
Quote Reply
Re: [jmar] Problem Mass Mailer - save a Template In reply to
The problem seems to be the German translation in the admin-template
email_selected_users_mail.html

Code:
...
<table border=0 cellpadding=2 cellspacing=3 width="100%">
<tr>
<td width="15%">
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font>
</td>
<td width="85%">
<select size=1 name=name>
<%templates%>
</select><br>
<input type=hidden name=previous value=selected_users_search>
<input type=submit name=action value=Laden>
<input type=submit name=action value=Speichern>
<input type=submit name=action value="Speichern unter...">
<input type=submit name=action value=L&ouml;schen></td>
</tr>
<tr>
<td><font face="Tahoma,Arial,Helvetica" size=2>Von (Name):</font></td>
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
</tr>
...

The actions should be placed in hidden fields ...

I hope the following are the correct values:

Code:
<input type=hidden name=previous value=selected_users_search>
<input type=submit name=action value=Load>
<input type=submit name=action value=Save>
<input type=submit name=action value=SaveAs>
<input type=submit name=action value=Delete>

Regards
Johannes
Quote Reply
Re: [jmar] Problem Mass Mailer - save a Template In reply to
Hmm, it still doesn't work.

Unsure
Quote Reply
Re: [jmar] Problem Mass Mailer - save a Template In reply to
Try using:
Code:
<input type=submit name="action=Load" value=Laden>
<input type=submit name="action=Save" value=Speichern>
<input type=submit name="action=Save as..." value="Speichern unter...">
<input type=submit name="action=Delete" value="L&ouml;schen">

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: [Jagerman] Problem Mass Mailer - save a Template In reply to
Some functions are working now.

I can save a template.
I can load a template.

I can't delete a template.

I can't "save as" a template.
I get the question for the name of a template, but when I submit the form reloads and still ask for the name again and again.