/**
  * Remove the specified mailing from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $mailing = Mailing::find($id);
     $mailing->delete();
     return Redirect::to('admin/mailing/')->with('success', array('Registro deletado.'));
 }