{$mailing->addresslist->name}
{if !$mailing->sent}
(the recipients in the addresslist might have changed since sending)
{/if}
{$mailing->addresslist->count} recipients:
{foreach array_keys($mailing->addresslist->AddressResults) as $key}
{if $key=="good"}
{$mailing->addresslist->AddressResults[$key]} never bounced
{if $mailing->stage == 'approved'}
The mailing has been approved. You can now send the mailing at a time
which suits you. Remember: if you make any changes to this mailing at
this point you will have to start over with the approval process.
{elseif $mailing->stage == 'complete'}
The initial requirements for the message are complete. You can now continue
with sending a proofread message to yourself.
{elseif $mailing->stage == 'draft'}
Setting up your mailing
{elseif $mailing->stage == 'proofread'}
You have just sent a message to yourself. This message is exactly as how it
would be sent to all recipients. You can still make changes if you want. If
you are happy with the message you can continue and submit the message for
approval.
{elseif $mailing->stage == 'rejected'}
The mailing has been rejected. You should have received the reason for rejection
by mail. You can make changes to this mailing if you wish. After changes are made
you can submit the message again if required.
{elseif $mailing->stage == 'sending'}
The system is sending out the message to all recipients.
{elseif $mailing->stage == 'sent'}
The mailing has been sent.
So far we detected {count($mailing->bounces)} bounces.
{elseif $mailing->stage == 'submitted'}
Your message is now under review. Once the review has taken place you
will be notified of the result. No messages will be sent at that stage.
This is stage is a manual process, one of the moderators will review your
mailing. During regular working hours this process should
ot take too long. If you feel this process is taking too long
contact them at {$cfg->moderators}.
{else}
{$mailing->stage}
{/if}
Created:
{$mailing->ctime}
Last modified:
{$mailing->mtime}
{if $mailing->stage == 'draft'}
Error
{foreach $mailing->incomplete as $incomplete}
{if $incomplete == "from-name" }
You have not specified information about the sender name for this massmail.
This information is required
{elseif $incomplete == "from-mail"}
You have not yet specified the sender email address for your massmail.
Sending the message without an address is impossible.
{elseif $incomplete == "from-mail-not-approved"}
You opted to change the sender email address to an address which is not your
own, nor noreply@ so we need verification. Said verification has not yet been
received so the address has not been changed yet. Please check the mailbox of the
address you specified for the link to verify the address.
Resend approval message.
{elseif $incomplete == "subject"}
The subject of your massmail is missing. A subject is required before you can send
the message
{elseif $incomplete == "body"}
Your message does not have content. Please add some content.
{elseif $incomplete == "addresslist"}
No recipients have been selected for this massmail. Before you can request
the message to be transmitted you need to attach an addresslist to this mailing.
{elseif $incomplete == "addresslist-empty"}
The addresslist you selected for this mailing does not contain any recipients
hence you cannot submit this message for massmailing.
{else}
{$incomplete}
{/if}